From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 3891 invoked by alias); 3 Dec 2010 23:45:32 -0000 Received: (qmail 3877 invoked by uid 22791); 3 Dec 2010 23:45:31 -0000 X-SWARE-Spam-Status: No, hits=-2.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00,T_HK_NAME_MR_MRS X-Spam-Check-By: sourceware.org Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Fri, 03 Dec 2010 23:45:25 +0000 From: "mrs at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug lto/46796] debug info missing builtin type names on darwin X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: lto X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: mrs at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated Content-Type: text/plain; charset="UTF-8" MIME-Version: 1.0 Date: Fri, 03 Dec 2010 23:45:00 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org X-SW-Source: 2010-12/txt/msg00384.txt.bz2 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46796 --- Comment #2 from mrs at gcc dot gnu.org 2010-12-03 23:45:15 UTC --- >>From dwarfdump of the good .o file: 0x000000a1: TAG_formal_parameter [3] AT_name( "i" ) AT_decl_file( "/Users/mrs/net/gcc-darwinLTO/gcc/t.c" ) AT_decl_line( 5 ) AT_type( {0x000000ae} ( int ) ) AT_location( fbreg -20 ) 0x000000ae: TAG_base_type [4] AT_byte_size( 0x04 ) AT_encoding( DW_ATE_signed ) AT_name( "int" ) and for the bad version: 0x00000110: TAG_formal_parameter [5] AT_name( "i" ) AT_decl_file( "/Users/mrs/net/gcc-darwinLTO/gcc/t.c" ) AT_decl_line( 5 ) AT_type( {0x000000ea} ( __unknown__ ) ) AT_location( fbreg -20 ) 0x000000ea: TAG_base_type [3] AT_byte_size( 0x04 ) AT_encoding( DW_ATE_signed ) AT_name( "__unknown__" )