From patchwork Thu Aug 22 14:26:15 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Julian Brown X-Patchwork-Id: 269086 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "localhost", Issuer "www.qmailtoaster.com" (not verified)) by ozlabs.org (Postfix) with ESMTPS id 525DF2C00BC for ; Fri, 23 Aug 2013 00:27:07 +1000 (EST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:date :from:to:cc:subject:message-id:mime-version:content-type; q=dns; s=default; b=eY2wBCr3RMf2BK/AMaNWgI55JFDVtY5yJE8rBGcBaYEAcdWF0K yYJFkeOGmyfmi3CbA+wF1+THeRkRhHwWdE5KEs6u1PGCyq/y2KXD6GZfqaqcDyuV E83QY+L+19t1N2Bflm6gYcy5IgFwnL3eK9MVp/zoqU5r/VUdmhFgvy16I= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:date :from:to:cc:subject:message-id:mime-version:content-type; s= default; bh=Rky90r0O05Einpn6Ay23YLt9c/o=; b=un+tEBP7gy2olcsWP46m EVzvcQ2FzORVxlCsvsKhmzK8ZqbQk9ZMKGbdfieNjPIxk75roa0J4TnMRFeuaMWs UFhqx/UmwPPYlrcCQipfZ6nQrP8SNZ7t3TS+OosKR3F96Cy9r14GTQo/Zqvp7Lxp +iDEsyjE8wVGwSHXdIy/WDE= Received: (qmail 11275 invoked by alias); 22 Aug 2013 14:26:27 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org Received: (qmail 11238 invoked by uid 89); 22 Aug 2013 14:26:27 -0000 X-Spam-SWARE-Status: No, score=-3.7 required=5.0 tests=AWL, BAYES_00, FROM_12LTRDOM, KHOP_RCVD_UNTRUST, RCVD_IN_HOSTKARMA_W, RCVD_IN_HOSTKARMA_WL autolearn=no version=3.3.2 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; Thu, 22 Aug 2013 14:26:25 +0000 Received: from svr-orw-fem-01.mgc.mentorg.com ([147.34.98.93]) by relay1.mentorg.com with esmtp id 1VCVqB-0003mH-J5 from Julian_Brown@mentor.com ; Thu, 22 Aug 2013 07:26:23 -0700 Received: from SVR-IES-FEM-01.mgc.mentorg.com ([137.202.0.104]) by svr-orw-fem-01.mgc.mentorg.com over TLS secured channel with Microsoft SMTPSVC(6.0.3790.4675); Thu, 22 Aug 2013 07:26:22 -0700 Received: from octopus (137.202.0.76) by SVR-IES-FEM-01.mgc.mentorg.com (137.202.0.104) with Microsoft SMTP Server id 14.2.247.3; Thu, 22 Aug 2013 15:26:21 +0100 Date: Thu, 22 Aug 2013 15:26:15 +0100 From: Julian Brown To: CC: Marcus Shawcroft Subject: [PATCH, AArch64] Fix configure test for AArch64 dwarf2 debug_line Message-ID: <20130822152615.64e0f360@octopus> MIME-Version: 1.0 X-Virus-Found: No Hi, This patch fixes what I assume to be a simple omission from the configure test for debug_line assembler support in gcc/configure. This tripped an obscure corner-case test in our build infrastructure, which is fixed by the attached patch, but I don't otherwise have a way of testing the patch at present. OK to apply? Thanks, Julian ChangeLog gcc/ * configure.ac: Add aarch64 to list of arches which use "nop" in debug_line test. * configure: Regenerate. Index: gcc/configure.ac =================================================================== --- gcc/configure.ac (revision 201919) +++ gcc/configure.ac (working copy) @@ -4219,8 +4219,9 @@ esac # ??? Once 2.11 is released, probably need to add first known working # version to the per-target configury. case "$cpu_type" in - alpha | arm | avr | bfin | cris | i386 | m32c | m68k | microblaze | mips \ - | pa | rs6000 | score | sparc | spu | tilegx | tilepro | xstormy16 | xtensa) + aarch64 | alpha | arm | avr | bfin | cris | i386 | m32c | m68k | microblaze + | mips | pa | rs6000 | score | sparc | spu | tilegx | tilepro | xstormy16 + | xtensa) insn="nop" ;; ia64 | s390)