diff options
author | Jakub Jelinek <jakub@redhat.com> | 2005-05-03 09:28:32 +0000 |
---|---|---|
committer | Jakub Jelinek <jakub@redhat.com> | 2005-05-03 09:28:32 +0000 |
commit | eec65e81e75bc0af8212e59a281b52d920607fc8 (patch) | |
tree | 6b9c5f1795a1062c593a4f1cfb3cc92b8eb90970 /sysdeps/i386 | |
parent | a0971eefb70ea4bf2c240f8b33926dde1dfbeb09 (diff) | |
download | glibc-eec65e81e75bc0af8212e59a281b52d920607fc8.tar glibc-eec65e81e75bc0af8212e59a281b52d920607fc8.tar.gz glibc-eec65e81e75bc0af8212e59a281b52d920607fc8.tar.bz2 glibc-eec65e81e75bc0af8212e59a281b52d920607fc8.zip |
Updated to fedora-glibc-20050503T0852
Diffstat (limited to 'sysdeps/i386')
-rw-r--r-- | sysdeps/i386/i686/memcmp.S | 4 | ||||
-rw-r--r-- | sysdeps/i386/sysdep.h | 10 |
2 files changed, 10 insertions, 4 deletions
diff --git a/sysdeps/i386/i686/memcmp.S b/sysdeps/i386/i686/memcmp.S index ef57acdee8..29aa546df5 100644 --- a/sysdeps/i386/i686/memcmp.S +++ b/sysdeps/i386/i686/memcmp.S @@ -1,5 +1,5 @@ /* Compare two memory blocks for differences in the first COUNT bytes. - Copyright (C) 2004 Free Software Foundation, Inc. + Copyright (C) 2004, 2005 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -350,6 +350,7 @@ L(set): sbbl $-1, %eax popl %esi RETURN +END (BP_SYM (memcmp)) .section .rodata ALIGN (2) @@ -387,7 +388,6 @@ L(table_32bytes) : .long L(30bytes) - . + 0x78 .long L(31bytes) - . + 0x7c -END (BP_SYM (memcmp)) #undef bcmp weak_alias (BP_SYM (memcmp), BP_SYM (bcmp)) diff --git a/sysdeps/i386/sysdep.h b/sysdeps/i386/sysdep.h index e955b43f95..56ba304328 100644 --- a/sysdeps/i386/sysdep.h +++ b/sysdeps/i386/sysdep.h @@ -1,5 +1,5 @@ /* Assembler macros for i386. - Copyright (C) 1991,92,93,95,96,98,2002,2003 Free Software Foundation, Inc. + Copyright (C) 1991-93,95,96,98,2002,2003,2005 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -57,10 +57,12 @@ .align ALIGNARG(4); \ STABS_FUN(name) \ C_LABEL(name) \ + cfi_startproc; \ CALL_MCOUNT #undef END #define END(name) \ + cfi_endproc; \ ASM_SIZE_DIRECTIVE(name) \ STABS_FUN_END(name) @@ -92,7 +94,9 @@ /* The mcount code relies on a normal frame pointer being on the stack to locate our caller, so push one just for its benefit. */ #define CALL_MCOUNT \ - pushl %ebp; movl %esp, %ebp; call JUMPTARGET(mcount); popl %ebp; + pushl %ebp; cfi_adjust_cfa_offset (4); movl %esp, %ebp; \ + cfi_def_cfa_register (ebp); call JUMPTARGET(mcount); \ + popl %ebp; cfi_def_cfa (esp, 4); #else #define CALL_MCOUNT /* Do nothing. */ #endif @@ -122,8 +126,10 @@ lose: SYSCALL_PIC_SETUP \ #define JUMPTARGET(name) name##@PLT #define SYSCALL_PIC_SETUP \ pushl %ebx; \ + cfi_adjust_cfa_offset (4); \ call 0f; \ 0: popl %ebx; \ + cfi_adjust_cfa_offset (-4); \ addl $_GLOBAL_OFFSET_TABLE+[.-0b], %ebx; #else #define JUMPTARGET(name) name |