diff options
author | David Edelsohn <edelsohn@gnu.org> | 2009-12-08 00:41:10 +0000 |
---|---|---|
committer | David Edelsohn <dje@gcc.gnu.org> | 2009-12-07 19:41:10 -0500 |
commit | 9e7e65a08b1bac45dff11d676bc49a845d4b438e (patch) | |
tree | bd5237712d452b4f5815af6e0fac5af9dce7e756 /libffi | |
parent | 61961c617d26944d1c757d814059543ec170f9f6 (diff) | |
download | gcc-9e7e65a08b1bac45dff11d676bc49a845d4b438e.tar.gz |
aix_closure.S (libffi_closure_ASM): Fix tablejump typo.
* src/powerpc/aix_closure.S (libffi_closure_ASM): Fix tablejump
typo.
From-SVN: r155070
Diffstat (limited to 'libffi')
-rw-r--r-- | libffi/ChangeLog | 7 | ||||
-rw-r--r-- | libffi/src/powerpc/aix_closure.S | 2 |
2 files changed, 7 insertions, 2 deletions
diff --git a/libffi/ChangeLog b/libffi/ChangeLog index 966b3d8c8f9..9782b69cb94 100644 --- a/libffi/ChangeLog +++ b/libffi/ChangeLog @@ -1,8 +1,13 @@ +2009-12-07 David Edelsohn <edelsohn@gnu.org> + + * src/powerpc/aix_closure.S (libffi_closure_ASM): Fix tablejump + typo. + 2009-12-05 David Edelsohn <edelsohn@gnu.org> * src/powerpc/aix.S: Update AIX32 code to be consistent with AIX64 code. - * src/powerpc/aix_closure.s: Same. + * src/powerpc/aix_closure.S: Same. 2009-12-05 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> diff --git a/libffi/src/powerpc/aix_closure.S b/libffi/src/powerpc/aix_closure.S index 7fe5c83cdd8..5c74448f2b1 100644 --- a/libffi/src/powerpc/aix_closure.S +++ b/libffi/src/powerpc/aix_closure.S @@ -340,7 +340,7 @@ L..finish: lwz r4, LC..60(2) /* get address of jump table */ slwi r3, r3, 4 /* now multiply return type by 4 */ lwz r0, 176+8(r1) /* load return address */ - lwzx r3, r4, r3 /* get the contents of that table value */ + add r3, r3, r4 /* add contents of table to table address */ mtctr r3 bctr /* jump to it */ |