no expected errors anymore
kaz Kojima
kkojima@rr.iij4u.or.jp
Tue Nov 5 16:04:00 GMT 2002
Hi,
Ulrich Drepper <drepper@redhat.com> wrote:
> You shouldn't see any expected errors from the test suite anymore. So
> report any problems once again.
I've tried this on SH. The second part of the attached patch fixed
the failure of stdlib/isomac test. The first part removes some SH
TLS relocations which are now obsoleted.
Regards,
kaz
--
2002-11-06 Kaz Kojima <kkojima@rr.iij4u.or.jp>
* elf/elf.h: Remove the obsolete SH TLS relocations.
* sysdeps/sh/bits/setjmp.h (JB_SIZE): Protect with #if defined
__USE_MISC || defined _ASM.
diff -urN ORIG/libc/elf/elf.h LOCAL/libc/elf/elf.h
--- ORIG/libc/elf/elf.h Tue Oct 29 09:57:42 2002
+++ LOCAL/libc/elf/elf.h Tue Nov 5 21:47:59 2002
@@ -2211,11 +2211,6 @@
#define R_SH_TLS_DTPMOD32 149
#define R_SH_TLS_DTPOFF32 150
#define R_SH_TLS_TPOFF32 151
-#define R_SH_TLS_GD_MOV 152
-#define R_SH_TLS_LDM_MOV 153
-#define R_SH_TLS_LDO_MOV 154
-#define R_SH_TLS_IE_MOV 155
-#define R_SH_TLS_LE_MOV 156
#define R_SH_GOT32 160
#define R_SH_PLT32 161
#define R_SH_COPY 162
diff -urN ORIG/libc/sysdeps/sh/bits/setjmp.h LOCAL/libc/sysdeps/sh/bits/setjmp.h
--- ORIG/libc/sysdeps/sh/bits/setjmp.h Fri Jul 6 13:56:03 2001
+++ LOCAL/libc/sysdeps/sh/bits/setjmp.h Wed Nov 6 06:49:58 2002
@@ -42,7 +42,9 @@
} __jmp_buf[1];
#endif
+#if defined __USE_MISC || defined _ASM
#define JB_SIZE (4 * 15)
+#endif
/* Test if longjmp to JMPBUF would unwind the frame
containing a local variable at ADDRESS. */
More information about the Libc-hacker
mailing list