From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 4454 invoked by alias); 26 Aug 2003 05:28:20 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 4447 invoked from network); 26 Aug 2003 05:28:19 -0000 Received: from unknown (HELO lacrosse.corp.redhat.com) (66.187.233.200) by sources.redhat.com with SMTP; 26 Aug 2003 05:28:19 -0000 Received: from prospero.boston.redhat.com (sebastian-int.corp.redhat.com [172.16.52.221]) by lacrosse.corp.redhat.com (8.11.6/8.9.3) with ESMTP id h7Q5SJK31137 for ; Tue, 26 Aug 2003 01:28:19 -0400 Received: by prospero.boston.redhat.com (Postfix, from userid 4046) id 461BEF7E9C; Tue, 26 Aug 2003 01:24:15 -0400 (EDT) To: gdb-patches@sources.redhat.com Subject: trivial PATCH to dwarf2read.c:dwarf_attr_name From: Jason Merrill Date: Tue, 26 Aug 2003 05:28:00 -0000 Message-ID: User-Agent: Gnus/5.1003 (Gnus v5.10.3) Emacs/21.2 (gnu/linux) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-SW-Source: 2003-08/txt/msg00445.txt.bz2 --=-=-= Content-length: 238 I'm checking this in under the obvious rule; DW_AT_MIPS_linkage_name is used on all targets. 2003-08-26 Jason Merrill * dwarf2read.c (dwarf_attr_name): Move DW_AT_MIPS_linkage_name case out of #ifdef MIPS block. --=-=-= Content-Type: text/x-patch Content-Disposition: inline Content-length: 801 *** dwarf2read.c.~1~ 2003-08-15 19:38:15.000000000 -0400 --- dwarf2read.c 2003-08-15 19:35:38.000000000 -0400 *************** dwarf_attr_name (register unsigned attr) *** 6049,6057 **** return "DW_AT_MIPS_loop_unroll_factor"; case DW_AT_MIPS_software_pipeline_depth: return "DW_AT_MIPS_software_pipeline_depth"; case DW_AT_MIPS_linkage_name: return "DW_AT_MIPS_linkage_name"; - #endif case DW_AT_sf_names: return "DW_AT_sf_names"; --- 6049,6057 ---- return "DW_AT_MIPS_loop_unroll_factor"; case DW_AT_MIPS_software_pipeline_depth: return "DW_AT_MIPS_software_pipeline_depth"; + #endif case DW_AT_MIPS_linkage_name: return "DW_AT_MIPS_linkage_name"; case DW_AT_sf_names: return "DW_AT_sf_names"; --=-=-=--