From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 26711 invoked by alias); 1 Jun 2012 14:43:59 -0000 Received: (qmail 26699 invoked by uid 22791); 1 Jun 2012 14:43:58 -0000 X-SWARE-Spam-Status: No, hits=-3.3 required=5.0 tests=AWL,BAYES_00,FROM_12LTRDOM,KHOP_RCVD_UNTRUST,RCVD_IN_HOSTKARMA_W,RCVD_IN_HOSTKARMA_WL X-Spam-Check-By: sourceware.org Received: from relay1.mentorg.com (HELO relay1.mentorg.com) (192.94.38.131) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Fri, 01 Jun 2012 14:43:45 +0000 Received: from nat-ies.mentorg.com ([192.94.31.2] helo=EU1-MAIL.mgc.mentorg.com) by relay1.mentorg.com with esmtp id 1SaT4q-00072W-Lo from joseph_myers@mentor.com for libc-ports@sourceware.org; Fri, 01 Jun 2012 07:43:44 -0700 Received: from digraph.polyomino.org.uk ([172.16.63.104]) by EU1-MAIL.mgc.mentorg.com with Microsoft SMTPSVC(6.0.3790.1830); Fri, 1 Jun 2012 15:43:43 +0100 Received: from jsm28 (helo=localhost) by digraph.polyomino.org.uk with local-esmtp (Exim 4.74) (envelope-from ) id 1SaT4n-0001Tu-VS for libc-ports@sourceware.org; Fri, 01 Jun 2012 14:43:41 +0000 Date: Fri, 01 Jun 2012 14:43:00 -0000 From: "Joseph S. Myers" To: libc-ports@sourceware.org Subject: Fix typo in MIPS abi-n32-condition Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Mailing-List: contact libc-ports-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: libc-ports-owner@sourceware.org X-SW-Source: 2012-06/txt/msg00002.txt.bz2 The MIPS abi-n32-condition had a typo (_MIPS_SIM_ABIN32 should have been _MIPS_SIM_NABI32). I've applied this patch to fix this. diff --git a/ChangeLog.mips b/ChangeLog.mips index f72dc4e..5cd25e7 100644 --- a/ChangeLog.mips +++ b/ChangeLog.mips @@ -1,3 +1,8 @@ +2012-06-01 Joseph Myers + + * sysdeps/unix/sysv/linux/mips/Makefile (abi-n32-condition): Fix + typo. + 2012-05-31 Joseph Myers * sysdeps/mips/mips64/libm-test-ulps: Remove sqrt ulps. diff --git a/sysdeps/unix/sysv/linux/mips/Makefile b/sysdeps/unix/sysv/linux/mips/Makefile index 2bbc9a4..99c554f 100644 --- a/sysdeps/unix/sysv/linux/mips/Makefile +++ b/sysdeps/unix/sysv/linux/mips/Makefile @@ -8,13 +8,13 @@ sysdep_routines += cachectl cacheflush sysmips _test_and_set sysdep_headers += sys/cachectl.h sys/sysmips.h sys/tas.h endif -# _MIPS_SIM_ABI32 == 1, _MIPS_SIM_ABIN32 == 2, _MIPS_SIM_ABI64 == 3 +# _MIPS_SIM_ABI32 == 1, _MIPS_SIM_NABI32 == 2, _MIPS_SIM_ABI64 == 3 abi-variants := o32 n32 n64 abi-includes := sgidefs.h abi-o32-options := -D_MIPS_SIM=1 abi-o32-condition := _MIPS_SIM == _MIPS_SIM_ABI32 abi-n32-options := -D_MIPS_SIM=2 -abi-n32-condition := _MIPS_SIM == _MIPS_SIM_ABIN32 +abi-n32-condition := _MIPS_SIM == _MIPS_SIM_NABI32 abi-n64-options := -D_MIPS_SIM=3 abi-n64-condition := _MIPS_SIM == _MIPS_SIM_ABI64 -- Joseph S. Myers joseph@codesourcery.com