This is the mail archive of the libc-hacker@sources.redhat.com mailing list for the glibc project.
Note that libc-hacker is a closed list. You may look at the archives of this list, but subscription and posting are not open.
| Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
|---|---|---|
| Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |
| Other format: | [Raw text] | |
Hi,
Some *.S files don't compile any longer due the last change to
sysdeps/i386/sysdep.h. Here is the fix:
2005-04-29 Thorsten Kukuk <kukuk@suse.de>
* sysdep.h (CALL_MCOUNT): Remove wrong backslash.
Index: sysdeps/i386/sysdep.h
===================================================================
RCS file: /cvs/glibc/libc/sysdeps/i386/sysdep.h,v
retrieving revision 1.15
diff -u -r1.15 sysdep.h
--- sysdeps/i386/sysdep.h 28 Apr 2005 21:09:30 -0000 1.15
+++ sysdeps/i386/sysdep.h 29 Apr 2005 13:04:29 -0000
@@ -94,7 +94,7 @@
/* 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; cfi_adjust_cfa_offset (4); \ movl %esp, %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
--
Thorsten Kukuk http://www.suse.de/~kukuk/ kukuk@suse.de
SUSE LINUX Products GmbH Maxfeldstr. 5 D-90409 Nuernberg
--------------------------------------------------------------------
Key fingerprint = A368 676B 5E1B 3E46 CFCE 2D97 F8FD 4E23 56C6 FB4B
| Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
|---|---|---|
| Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |