From: Devang Patel Date: Mon, 30 Nov 2009 23:56:56 +0000 (+0000) Subject: If pointer type has a name then do not ignore the name. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=deea564e53fd1a582f2621ffb07de606f8464881;p=oota-llvm.git If pointer type has a name then do not ignore the name. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@90172 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/AsmPrinter/DwarfDebug.cpp b/lib/CodeGen/AsmPrinter/DwarfDebug.cpp index 9dad574aa2e..c2e1e0503a8 100644 --- a/lib/CodeGen/AsmPrinter/DwarfDebug.cpp +++ b/lib/CodeGen/AsmPrinter/DwarfDebug.cpp @@ -815,7 +815,7 @@ void DwarfDebug::constructTypeDIE(CompileUnit *DW_Unit, DIE &Buffer, addType(DW_Unit, &Buffer, FromTy); // Add name if not anonymous or intermediate type. - if (!Name.empty() && Tag != dwarf::DW_TAG_pointer_type) + if (!Name.empty()) addString(&Buffer, dwarf::DW_AT_name, dwarf::DW_FORM_string, Name); // Add size if non-zero (derived types might be zero-sized.)