yann@1201: Original patch from: gentoo/src/patchsets/glibc/2.9/0070_all_glibc-i386-x86_64-revert-clone-cfi.patch yann@1201: yann@1201: -= BEGIN original header =- yann@1201: revert cfi additions to clone on i386/x86_64 to workaround problems in yann@1201: gcc's unwinder code. this is not a bug in glibc, it triggers problems yann@1201: elsewhere. this cfi code does not gain us a whole lot anyways. yann@1201: yann@1201: http://gcc.gnu.org/ml/gcc/2006-12/msg00293.html yann@1201: yann@1201: -= END original header =- yann@1201: yann@1201: diff -durN glibc-2_9.orig/sysdeps/unix/sysv/linux/i386/clone.S glibc-2_9/sysdeps/unix/sysv/linux/i386/clone.S yann@1201: --- glibc-2_9.orig/sysdeps/unix/sysv/linux/i386/clone.S 2006-12-04 00:12:36.000000000 +0100 yann@1201: +++ glibc-2_9/sysdeps/unix/sysv/linux/i386/clone.S 2009-02-02 22:00:45.000000000 +0100 yann@1201: @@ -120,9 +120,6 @@ yann@1201: ret yann@1201: yann@1201: L(thread_start): yann@1201: - cfi_startproc; yann@1201: - /* Clearing frame pointer is insufficient, use CFI. */ yann@1201: - cfi_undefined (eip); yann@1201: /* Note: %esi is zero. */ yann@1201: movl %esi,%ebp /* terminate the stack frame */ yann@1201: #ifdef RESET_PID yann@1201: @@ -155,7 +152,6 @@ yann@1201: jmp L(haspid) yann@1201: .previous yann@1201: #endif yann@1201: - cfi_endproc; yann@1201: yann@1201: cfi_startproc yann@1201: PSEUDO_END (BP_SYM (__clone)) yann@1201: diff -durN glibc-2_9.orig/sysdeps/unix/sysv/linux/x86_64/clone.S glibc-2_9/sysdeps/unix/sysv/linux/x86_64/clone.S yann@1201: --- glibc-2_9.orig/sysdeps/unix/sysv/linux/x86_64/clone.S 2006-12-04 00:12:36.000000000 +0100 yann@1201: +++ glibc-2_9/sysdeps/unix/sysv/linux/x86_64/clone.S 2009-02-02 22:00:45.000000000 +0100 yann@1201: @@ -89,9 +89,6 @@ yann@1201: ret yann@1201: yann@1201: L(thread_start): yann@1201: - cfi_startproc; yann@1201: - /* Clearing frame pointer is insufficient, use CFI. */ yann@1201: - cfi_undefined (rip); yann@1201: /* Clear the frame pointer. The ABI suggests this be done, to mark yann@1201: the outermost frame obviously. */ yann@1201: xorl %ebp, %ebp yann@1201: @@ -116,7 +113,6 @@ yann@1201: /* Call exit with return value from function call. */ yann@1201: movq %rax, %rdi yann@1201: call HIDDEN_JUMPTARGET (_exit) yann@1201: - cfi_endproc; yann@1201: yann@1201: cfi_startproc; yann@1201: PSEUDO_END (BP_SYM (__clone))