diff options
| author | Eugen Wissner <belka@caraus.de> | 2018-10-02 08:55:29 +0200 |
|---|---|---|
| committer | Eugen Wissner <belka@caraus.de> | 2018-10-02 08:55:29 +0200 |
| commit | 772e87739c848a10a014d3118ff14bd0ca48b2d0 (patch) | |
| tree | b567a3c6fb03d45fb7048632bdb66501e42e65d8 /arch/build.ninja | |
| parent | 2a90a812db53728d29a3a821cb292c032437d806 (diff) | |
| download | tanya-772e87739c848a10a014d3118ff14bd0ca48b2d0.tar.gz | |
Replace memory.op.cmp with optimized equal version
Deprecate cmp.
Fix #68.
Diffstat (limited to 'arch/build.ninja')
| -rw-r--r-- | arch/build.ninja | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/build.ninja b/arch/build.ninja index 824efa4..cf05696 100644 --- a/arch/build.ninja +++ b/arch/build.ninja @@ -6,9 +6,9 @@ rule archive build abs.o: gas x64/linux/math/abs.S build log.o: gas x64/linux/math/log.S -build cmp.o: gas x64/linux/memory/cmp.S +build equal.o: gas x64/linux/memory/equal.S build fill.o: gas x64/linux/memory/fill.S build copy.o: gas x64/linux/memory/copy.S build syscall.o: gas x64/linux/syscall.S -build tanya.a: archive syscall.o copy.o fill.o cmp.o log.o abs.o +build tanya.a: archive syscall.o copy.o fill.o equal.o log.o abs.o |
