Update of /cvsroot/linux-vax/glibc/sysdeps/unix/sysv/linux/vax
In directory sc8-pr-cvs1:/tmp/cvs-serv12990
Modified Files:
sysdep.h
Log Message:
Remove #ifdef PIC guards to allow glibc to compile with current toolchain
Index: sysdep.h
===================================================================
RCS file: /cvsroot/linux-vax/glibc/sysdeps/unix/sysv/linux/vax/sysdep.h,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- sysdep.h 15 Aug 2003 13:05:14 -0000 1.9
+++ sysdep.h 9 Nov 2003 19:45:12 -0000 1.10
@@ -41,11 +41,7 @@
#define MOVE(x,y) movl x , y
-#ifdef PIC
-# define SYSCALL_ERROR_LABEL 0f
-#else
# define SYSCALL_ERROR_LABEL syscall_error
-#endif
#undef PSEUDO
#define PSEUDO(name, syscall_name, args) \
@@ -63,15 +59,7 @@
SYSCALL_ERROR_HANDLER \
END(name)
-#ifndef PIC
- /* code in sysdep.S */
-#define SYSCALL_ERROR_HANDLER
-#else
-#ifdef _LIBC_REENTRANT
#define SYSCALL_ERROR_HANDLER
-#error "reentrant pic"
-#endif
-#endif
#define DOARGS_0 pushl $0 ;
#define DOARGS_1 pushl $1 ;
|