diff options
author | John van Groningen | 2006-06-09 13:37:27 +0000 |
---|---|---|
committer | John van Groningen | 2006-06-09 13:37:27 +0000 |
commit | 6ff1155310382b1c3cb7a24ca5cf5d9249a58fdb (patch) | |
tree | b8d7ae299dc0639255b14f685bc8a8eca2359cdd | |
parent | fix printing of heap size after garbage collection on windows, (diff) |
use lea instead of add because it does not change the condition codes
-rw-r--r-- | aap.asm | 4 | ||||
-rw-r--r-- | aap.s | 4 |
2 files changed, 4 insertions, 4 deletions
@@ -537,7 +537,7 @@ fast_ap_2_2_: mov qw [a4],a0 mov qw 8[a4],a1 - add a4,16 + lea a4,16[a4] mov a1,qw 16[a2] jmp fast_ap_ @@ -581,7 +581,7 @@ fast_ap: mov qw [a4],a0 mov qw 8[a4],a1 - add a4,16 + lea a4,16[a4] mov a1,qw 16[a2] fast_ap_: @@ -534,7 +534,7 @@ fast_ap_2_2_: mov qword ptr [rsi],rcx mov qword ptr 8[rsi],rdx - add rsi,16 + lea rsi,16[rsi] mov rdx,qword ptr 16[r8] jmp fast_ap_ @@ -578,7 +578,7 @@ fast_ap: mov qword ptr [rsi],rcx mov qword ptr 8[rsi],rdx - add rsi,16 + lea rsi,16[rsi] mov rdx,qword ptr 16[r8] fast_ap_: |