diff options
author | Jim Wilson <wilson@redhat.com> | 2001-04-18 20:30:48 +0000 |
---|---|---|
committer | Jim Wilson <wilson@gcc.gnu.org> | 2001-04-18 13:30:48 -0700 |
commit | df5da1c419def29ee06c36a4e628b4358509f1fa (patch) | |
tree | 4fc4da1c5eba33438c4403c5d91f0d46e5028a8a /libffi/src/ia64 | |
parent | 0d692355b98ffee1c54eb8b4f3e2f5e0a93b2b54 (diff) | |
download | gcc-df5da1c419def29ee06c36a4e628b4358509f1fa.zip gcc-df5da1c419def29ee06c36a4e628b4358509f1fa.tar.gz gcc-df5da1c419def29ee06c36a4e628b4358509f1fa.tar.bz2 |
Eliminate assembler warnings found by ia64-linux bootstrap.
* src/ia64/unix.S: Delete unnecessary increment and decrement of loc2
to eliminate RAW DV.
From-SVN: r41411
Diffstat (limited to 'libffi/src/ia64')
-rw-r--r-- | libffi/src/ia64/unix.S | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libffi/src/ia64/unix.S b/libffi/src/ia64/unix.S index fdaf8be..284dadd 100644 --- a/libffi/src/ia64/unix.S +++ b/libffi/src/ia64/unix.S @@ -94,11 +94,11 @@ fp_done: ld8 out4=[loc2],16 ld8 out5=[loc3],16 ;; - ld8 out6=[loc2],16 + ld8 out6=[loc2] ld8 out7=[loc3] - /* loc2 points at first stack parameter. Set sp to 16 bytes */ - /* below that. */ - add sp=-16,loc2 + /* Set sp to 16 bytes below the first stack parameter. This */ + /* is the value currently in loc2. */ + mov sp=loc2 ld8 r8=[fn],8 ;; |