patches/glibc/2.2.5/arm-asm-clobber.patch
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sat Feb 24 11:00:05 2007 +0000 (2007-02-24)
changeset 1 eeea35fbf182
permissions -rw-r--r--
Add the full crosstool-NG sources to the new repository of its own.
You might just say: 'Yeah! crosstool-NG's got its own repo!".
Unfortunately, that's because the previous repo got damaged beyond repair and I had no backup.
That means I'm putting backups in place in the afternoon.
That also means we've lost history... :-(
yann@1
     1
http://gcc.gnu.org/PR11103
yann@1
     2
yann@1
     3
Error:
yann@1
     4
../sysdeps/unix/sysv/linux/arm/sigaction.c: In function `__libc_sigaction':
yann@1
     5
../sysdeps/unix/sysv/linux/arm/sigaction.c:100: error: asm-specifier for variable `_a1' conflicts with asm clobber list
yann@1
     6
../sysdeps/unix/sysv/linux/arm/sigaction.c:139: error: asm-specifier for variable `_a1' conflicts with asm clobber list
yann@1
     7
make[2]: *** [/crosstool-0.22/build/arm-unknown-linux-gnu/gcc-3.3-glibc-2.2.5/build-glibc/signal/sigaction.o] Error 1
yann@1
     8
yann@1
     9
Fix from http://lists.arm.linux.org.uk/pipermail/linux-arm/2003-July/005826.html
yann@1
    10
rediffed against glibc-2.2.5
yann@1
    11
Not tested.  (I don't even understand it, just being a patch monkey...)
yann@1
    12
yann@1
    13
--- glibc-2.2.5/sysdeps/unix/sysv/linux/arm/sysdep.h.old	Wed Aug 27 09:58:15 2003
yann@1
    14
+++ glibc-2.2.5/sysdeps/unix/sysv/linux/arm/sysdep.h	Wed Aug 27 09:59:04 2003
yann@1
    15
@@ -131,7 +131,7 @@
yann@1
    16
        asm volatile ("swi	%1	@ syscall " #name	\
yann@1
    17
 		     : "=r" (_a1)				\
yann@1
    18
 		     : "i" (SYS_ify(name)) ASM_ARGS_##nr	\
yann@1
    19
-		     : "a1", "memory");				\
yann@1
    20
+		     : "memory");				\
yann@1
    21
        _sys_result = _a1;					\
yann@1
    22
      }								\
yann@1
    23
      if (_sys_result >= (unsigned int) -4095)			\