diff options
Diffstat (limited to 'gcc/testsuite')
-rw-r--r-- | gcc/testsuite/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/testsuite/gcc.target/x86_64/abi/asm-support-darwin.s | 2 |
2 files changed, 8 insertions, 0 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index c53270b79ce..4c2d36553f7 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,9 @@ +2009-09-18 Jack Howarth <howarth@bromo.med.uc.edu> + + PR testsuite/41288 + * gcc.target/x86_64/abi/asm-support-darwin.s (snapshot_ret): Preserve + stack alignment. + 2009-09-17 Andrew Pinski <pinskia@gcc.gnu.org> PR c++/39365 diff --git a/gcc/testsuite/gcc.target/x86_64/abi/asm-support-darwin.s b/gcc/testsuite/gcc.target/x86_64/abi/asm-support-darwin.s index a02c96c15f9..5a7c91be6ee 100644 --- a/gcc/testsuite/gcc.target/x86_64/abi/asm-support-darwin.s +++ b/gcc/testsuite/gcc.target/x86_64/abi/asm-support-darwin.s @@ -42,7 +42,9 @@ _snapshot: .globl _snapshot_ret _snapshot_ret: movq %rdi, _rdi(%rip) + subq $8, %rsp call *_callthis(%rip) + addq $8, %rsp movq %rax, _rax(%rip) movq %rdx, _rdx(%rip) movdqu %xmm0, _xmm_regs+0(%rip) |