From patchwork Fri Sep 24 13:08:56 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tristan Gingold X-Patchwork-Id: 65650 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]) by ozlabs.org (Postfix) with SMTP id 9188BB713F for ; Fri, 24 Sep 2010 23:09:06 +1000 (EST) Received: (qmail 11331 invoked by alias); 24 Sep 2010 13:09:04 -0000 Received: (qmail 11202 invoked by uid 22791); 24 Sep 2010 13:09:03 -0000 X-SWARE-Spam-Status: No, hits=-2.0 required=5.0 tests=AWL,BAYES_00 X-Spam-Check-By: sourceware.org Received: from mel.act-europe.fr (HELO mel.act-europe.fr) (212.99.106.210) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Fri, 24 Sep 2010 13:08:58 +0000 Received: from localhost (localhost [127.0.0.1]) by filtered-smtp.eu.adacore.com (Postfix) with ESMTP id 8BA69CB0288; Fri, 24 Sep 2010 15:08:56 +0200 (CEST) Received: from mel.act-europe.fr ([127.0.0.1]) by localhost (smtp.eu.adacore.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id xTAMQe1kId7V; Fri, 24 Sep 2010 15:08:56 +0200 (CEST) Received: from ulanbator.act-europe.fr (ulanbator.act-europe.fr [10.10.1.67]) (using TLSv1 with cipher AES128-SHA (128/128 bits)) (No client certificate requested) by mel.act-europe.fr (Postfix) with ESMTP id 5BCCFCB022A; Fri, 24 Sep 2010 15:08:56 +0200 (CEST) From: Tristan Gingold Subject: [Patch] Enable dwarf2 debug_line for avr Date: Fri, 24 Sep 2010 15:08:56 +0200 Message-Id: Cc: Eric Weddington To: gcc-patches Patches Mime-Version: 1.0 (Apple Message framework v1081) X-IsSubscribed: yes 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 Hi, as there currently no nop insn defined for avr in configure.ac and therefore many of the dwarf2 tests are disabled. This one line patch just add avr in the list for the standard 'nop' insn. Ok for mainline ? Tristan. 2010-09-24 Tristan Gingold * configure.ac: Define the nop insn for avr*-*-* * configure: Regenerate. diff --git a/gcc/configure.ac b/gcc/configure.ac index 278cc4f..103d1ed 100644 --- a/gcc/configure.ac +++ b/gcc/configure.ac @@ -3746,7 +3746,7 @@ esac # version to the per-target configury. case "$target" in i?86*-*-* | mips*-*-* | alpha*-*-* | powerpc*-*-* | sparc*-*-* | m68*-*-* \ - | x86_64*-*-* | hppa*-*-* | arm*-*-* \ + | x86_64*-*-* | hppa*-*-* | arm*-*-* | avr*-*-* \ | xstormy16*-*-* | cris-*-* | crisv32-*-* | xtensa*-*-* | bfin-*-* | score*-*-* \ | spu-*-* | fido*-*-* | m32c-*-*) insn="nop"