From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 6351 invoked by alias); 6 Nov 2002 00:04:50 -0000 Mailing-List: contact libc-hacker-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-hacker-owner@sources.redhat.com Received: (qmail 6335 invoked from network); 6 Nov 2002 00:04:50 -0000 Received: from unknown (HELO r-rr.iij4u.or.jp) (210.130.0.76) by sources.redhat.com with SMTP; 6 Nov 2002 00:04:50 -0000 Received: from localhost (frgw.3in.ne.jp [210.251.121.226]) by r-rr.iij4u.or.jp (8.11.6+IIJ/8.11.6) with ESMTP id gA604mO08914 for ; Wed, 6 Nov 2002 09:04:48 +0900 (JST) Message-Id: <200211060004.gA604mO08914@r-rr.iij4u.or.jp> To: libc-hacker@sources.redhat.com Subject: Re: no expected errors anymore In-Reply-To: Your message of "Tue, 05 Nov 2002 00:34:34 -0800" <3DC7829A.6050406@redhat.com> References: <3DC7829A.6050406@redhat.com> Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Date: Tue, 05 Nov 2002 16:04:00 -0000 From: kaz Kojima X-Dispatcher: imput version 971024 X-SW-Source: 2002-11/txt/msg00009.txt.bz2 Hi, Ulrich Drepper 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 * 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. */