aboutsummaryrefslogtreecommitdiff
path: root/libgcc/config
diff options
context:
space:
mode:
authorChris Demetriou <cgd@google.com>2011-05-04 11:59:31 -0700
committerChris Demetriou <cgd@gcc.gnu.org>2011-05-04 11:59:31 -0700
commita3330c9d558720697db4f6f767252335eefe89a3 (patch)
tree4067184521d140ce86c751d8ab6cf12039e2c5da /libgcc/config
parent19defc331f5c8ae6d33b635c86cd89c2b70fc6d7 (diff)
downloadgcc-a3330c9d558720697db4f6f767252335eefe89a3.zip
gcc-a3330c9d558720697db4f6f767252335eefe89a3.tar.gz
gcc-a3330c9d558720697db4f6f767252335eefe89a3.tar.bz2
morestack.S (__i686.get_pc_thunk.bx): Rename to...
2011-05-04 Chris Demetriou <cgd@google.com> * config/i386/morestack.S (__i686.get_pc_thunk.bx): Rename to... (__x86.get_pc_thunk.bx): ...this. (__morestack): Adjust for rename, remove undef of __i686. From-SVN: r173391
Diffstat (limited to 'libgcc/config')
-rw-r--r--libgcc/config/i386/morestack.S16
1 files changed, 7 insertions, 9 deletions
diff --git a/libgcc/config/i386/morestack.S b/libgcc/config/i386/morestack.S
index 5db5e50..16279c7 100644
--- a/libgcc/config/i386/morestack.S
+++ b/libgcc/config/i386/morestack.S
@@ -278,8 +278,7 @@ __morestack:
movl 4(%esp),%eax # Function argument.
movl %eax,(%esp)
#ifdef __PIC__
-#undef __i686
- call __i686.get_pc_thunk.bx # %ebx may not be set up for us.
+ call __x86.get_pc_thunk.bx # %ebx may not be set up for us.
addl $_GLOBAL_OFFSET_TABLE_, %ebx
call _Unwind_Resume@PLT # Resume unwinding.
#else
@@ -451,20 +450,19 @@ __morestack:
#if !defined(__x86_64__) && defined(__PIC__)
# Output the thunk to get PC into bx, since we use it above.
-# (__i686 was already undef'd above; don't need to worry about it here.)
- .section .text.__i686.get_pc_thunk.bx,"axG",@progbits,__i686.get_pc_thunk.bx,comdat
- .globl __i686.get_pc_thunk.bx
- .hidden __i686.get_pc_thunk.bx
+ .section .text.__x86.get_pc_thunk.bx,"axG",@progbits,__x86.get_pc_thunk.bx,comdat
+ .globl __x86.get_pc_thunk.bx
+ .hidden __x86.get_pc_thunk.bx
#ifdef __ELF__
- .type __i686.get_pc_thunk.bx, @function
+ .type __x86.get_pc_thunk.bx, @function
#endif
-__i686.get_pc_thunk.bx:
+__x86.get_pc_thunk.bx:
.cfi_startproc
movl (%esp), %ebx
ret
.cfi_endproc
#ifdef __ELF__
- .size __i686.get_pc_thunk.bx, . - __i686.get_pc_thunk.bx
+ .size __x86.get_pc_thunk.bx, . - __x86.get_pc_thunk.bx
#endif
#endif