From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 15273 invoked by alias); 22 Apr 2004 07:25:06 -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 15257 invoked from network); 22 Apr 2004 07:25:05 -0000 Received: from unknown (HELO mta08-svc.ntlworld.com) (62.253.162.48) by sources.redhat.com with SMTP; 22 Apr 2004 07:25:05 -0000 Received: from dixie.nexus.co.uk ([81.96.69.80]) by mta08-svc.ntlworld.com (InterMail vM.4.01.03.37 201-229-121-137-20020806) with ESMTP id <20040422072429.HXWY4673.mta08-svc.ntlworld.com@dixie.nexus.co.uk> for ; Thu, 22 Apr 2004 08:24:29 +0100 Received: from localhost ([127.0.0.1]) by dixie.nexus.co.uk with esmtp (Exim 3.36 #1 (Debian)) id 1BGYZK-0004ML-00 for ; Thu, 22 Apr 2004 08:24:22 +0100 Subject: fix a compile error on arm From: Philip Blundell To: libc-hacker@sources.redhat.com Content-Type: multipart/mixed; boundary="=-1srunjIHrtIBkQ2+GY5W" Message-Id: <1082618661.29708.50.camel@dixie.nexus.co.uk> Mime-Version: 1.0 Date: Thu, 22 Apr 2004 07:25:00 -0000 X-SW-Source: 2004-04/txt/msg00081.txt.bz2 --=-1srunjIHrtIBkQ2+GY5W Content-Type: text/plain Content-Transfer-Encoding: 7bit Content-length: 78 This patch removes INTUSE() from some calls to _dl_signal_error. Thanks p. --=-1srunjIHrtIBkQ2+GY5W Content-Disposition: attachment; filename=intuse.patch Content-Type: text/x-patch; name=intuse.patch; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-length: 1240 2004-04-22 Philip Blundell * sysdeps/arm/dl-machine.h (elf_machine_rela): Don't use INTUSE when calling _dl_signal_error. (elf_machine_rel): Likewise. Index: sysdeps/arm/dl-machine.h =================================================================== RCS file: /cvs/glibc/libc/sysdeps/arm/dl-machine.h,v retrieving revision 1.46 diff -u -r1.46 dl-machine.h --- sysdeps/arm/dl-machine.h 5 Mar 2004 10:21:30 -0000 1.46 +++ sysdeps/arm/dl-machine.h 22 Apr 2004 06:39:24 -0000 @@ -507,9 +505,8 @@ topbits = newvalue & 0xfe000000; if (topbits != 0xfe000000 && topbits != 0x00000000) { - INTUSE (_dl_signal_error) - (0, map->l_name, NULL, - "R_ARM_PC24 relocation out of range"); + _dl_signal_error (0, map->l_name, NULL, + "R_ARM_PC24 relocation out of range"); } } newvalue >>= 2; @@ -588,9 +585,8 @@ topbits = newvalue & 0xfe000000; if (topbits != 0xfe000000 && topbits != 0x00000000) { - INTUSE (_dl_signal_error) - (0, map->l_name, NULL, - "R_ARM_PC24 relocation out of range"); + _dl_signal_error (0, map->l_name, NULL, + "R_ARM_PC24 relocation out of range"); } } newvalue >>= 2; --=-1srunjIHrtIBkQ2+GY5W--