From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 24380 invoked by alias); 14 Jun 2013 21:20:59 -0000 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 Received: (qmail 24370 invoked by uid 89); 14 Jun 2013 21:20:58 -0000 X-Spam-SWARE-Status: No, score=-2.6 required=5.0 tests=AWL,BAYES_50,KHOP_RCVD_UNTRUST,RCVD_IN_HOSTKARMA_W,RCVD_IN_HOSTKARMA_WL autolearn=ham version=3.3.1 Received: from relay1.mentorg.com (HELO relay1.mentorg.com) (192.94.38.131) by sourceware.org (qpsmtpd/0.84/v0.84-167-ge50287c) with ESMTP; Fri, 14 Jun 2013 21:20:58 +0000 Received: from svr-orw-exc-10.mgc.mentorg.com ([147.34.98.58]) by relay1.mentorg.com with esmtp id 1UnbQW-0006O8-KK from joseph_myers@mentor.com for libc-ports@sourceware.org; Fri, 14 Jun 2013 14:20:56 -0700 Received: from SVR-IES-FEM-02.mgc.mentorg.com ([137.202.0.106]) by SVR-ORW-EXC-10.mgc.mentorg.com with Microsoft SMTPSVC(6.0.3790.4675); Fri, 14 Jun 2013 14:20:56 -0700 Received: from digraph.polyomino.org.uk (137.202.0.76) by SVR-IES-FEM-02.mgc.mentorg.com (137.202.0.106) with Microsoft SMTP Server id 14.2.247.3; Fri, 14 Jun 2013 22:20:54 +0100 Received: from jsm28 (helo=localhost) by digraph.polyomino.org.uk with local-esmtp (Exim 4.76) (envelope-from ) id 1UnbQT-0002U7-S5 for libc-ports@sourceware.org; Fri, 14 Jun 2013 21:20:53 +0000 Date: Fri, 14 Jun 2013 21:20:00 -0000 From: "Joseph S. Myers" To: Subject: Update ARM _FPU_RESERVED value Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" X-SW-Source: 2013-06/txt/msg00018.txt.bz2 I've committed this patch to update the ARM _FPU_RESERVED value as requested in bug 15492. diff --git a/NEWS b/NEWS index 6de51bf..31fcb6c 100644 --- a/NEWS +++ b/NEWS @@ -19,8 +19,8 @@ Version 2.18 15330, 15335, 15336, 15337, 15339, 15342, 15346, 15359, 15361, 15366, 15380, 15381, 15394, 15395, 15405, 15406, 15409, 15416, 15418, 15419, 15423, 15424, 15426, 15429, 15431, 15432, 15441, 15442, 15448, 15465, - 15480, 15485, 15488, 15490, 15493, 15497, 15506, 15529, 15536, 15553, - 15577, 15583, 15618, 15627. + 15480, 15485, 15488, 15490, 15492, 15493, 15497, 15506, 15529, 15536, + 15553, 15577, 15583, 15618, 15627. * CVE-2013-0242 Buffer overrun in regexp matcher has been fixed (Bugzilla #15078). diff --git a/ports/ChangeLog.arm b/ports/ChangeLog.arm index 28ebfdf..d62d00e 100644 --- a/ports/ChangeLog.arm +++ b/ports/ChangeLog.arm @@ -1,3 +1,9 @@ +2013-06-14 Joseph Myers + + [BZ #15492] + * sysdeps/arm/fpu_control.h [_LIBC || !__SOFTFP__] + (_FPU_RESERVED): Change value to 0x00086060. + 2013-06-11 Joseph Myers * sysdeps/arm/math-tests.h [__SOFTFP__] (EXCEPTION_TESTS_float): diff --git a/ports/sysdeps/arm/fpu_control.h b/ports/sysdeps/arm/fpu_control.h index 02d6e2c..2fee79f 100644 --- a/ports/sysdeps/arm/fpu_control.h +++ b/ports/sysdeps/arm/fpu_control.h @@ -39,7 +39,7 @@ extern fpu_control_t __fpu_control; /* Some bits in the FPSCR are not yet defined. They must be preserved when modifying the contents. */ -#define _FPU_RESERVED 0x0e08e0e0 +#define _FPU_RESERVED 0x00086060 #define _FPU_DEFAULT 0x00000000 /* Default + exceptions enabled. */ #define _FPU_IEEE (_FPU_DEFAULT | 0x00001f00) -- Joseph S. Myers joseph@codesourcery.com