From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 10143 invoked by alias); 15 Feb 2010 15:09:08 -0000 Received: (qmail 10123 invoked by uid 22791); 15 Feb 2010 15:09:07 -0000 X-SWARE-Spam-Status: No, hits=-3.2 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_LOW X-Spam-Check-By: sourceware.org Received: from adelie.canonical.com (HELO adelie.canonical.com) (91.189.90.139) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Mon, 15 Feb 2010 15:09:03 +0000 Received: from hutte.canonical.com ([91.189.90.181]) by adelie.canonical.com with esmtp (Exim 4.69 #1 (Debian)) id 1Nh2ZH-0005n9-Tt; Mon, 15 Feb 2010 15:08:59 +0000 Received: from dslb-088-073-111-063.pools.arcor-ip.net ([88.73.111.63] helo=[192.168.42.17]) by hutte.canonical.com with esmtpsa (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.69) (envelope-from ) id 1Nh2ZH-0006f4-Q3; Mon, 15 Feb 2010 15:08:59 +0000 Message-ID: <4B796389.5070402@ubuntu.com> Date: Mon, 15 Feb 2010 15:09:00 -0000 From: Matthias Klose User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.7pre) Gecko/20091206 Shredder/3.0.1pre MIME-Version: 1.0 To: GCJ-patches , libffi-discuss@sourceware.org CC: Daniel Gutson Subject: [patch] Define __ARM_ARCH__ for processor __ARM_ARCH_7EM__ Content-Type: multipart/mixed; boundary="------------030607090208090701050001" X-IsSubscribed: yes Mailing-List: contact java-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: java-patches-owner@gcc.gnu.org X-SW-Source: 2010-q1/txt/msg00035.txt.bz2 This is a multi-part message in MIME format. --------------030607090208090701050001 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-length: 352 This is corresponding to the patch for gcc/, made on the trunk and the 4.4 branch: 2010-02-10 Daniel Gutson * config/arm/lib1funcs.asm (__ARM_ARCH__): __ARM_ARCH_7EM__ added to the preprocessor condition. Ok for the 4.4 branch and the trunk? Please commit to the libffi repository as well. Matthias --------------030607090208090701050001 Content-Type: text/plain; name="arm.diff" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="arm.diff" Content-length: 810 Index: ChangeLog =================================================================== --- ChangeLog (revision 156770) +++ ChangeLog (working copy) @@ -1,3 +1,8 @@ +2010-02-15 Matthias Klose + + * src/arm/sysv.S (__ARM_ARCH__): Define for processor + __ARM_ARCH_7EM__. + 2010-01-21 Release Manager * GCC 4.4.3 released. Index: src/arm/sysv.S =================================================================== --- src/arm/sysv.S (revision 156770) +++ src/arm/sysv.S (working copy) @@ -73,7 +73,8 @@ #endif #if defined(__ARM_ARCH_7__) || defined(__ARM_ARCH_7A__) \ - || defined(__ARM_ARCH_7R__) || defined(__ARM_ARCH_7M__) + || defined(__ARM_ARCH_7R__) || defined(__ARM_ARCH_7M__) \ + || defined(__ARM_ARCH_7EM__) # undef __ARM_ARCH__ # define __ARM_ARCH__ 7 #endif --------------030607090208090701050001--