From: Eric Christopher Date: Wed, 27 Feb 2013 23:49:50 +0000 (+0000) Subject: Remove unnecessary check against isGlobalVariable. We check it X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=a8ada25afdb74a1cc53c183348ad9a424501dc96;p=oota-llvm.git Remove unnecessary check against isGlobalVariable. We check it a few lines above. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@176224 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp b/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp index d2e05255663..d9f6b5eb0ad 100644 --- a/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp +++ b/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp @@ -1348,7 +1348,7 @@ void CompileUnit::createGlobalVariableDIE(const MDNode *N) { } // Add linkage name. StringRef LinkageName = GV.getLinkageName(); - if (!LinkageName.empty() && isGlobalVariable) { + if (!LinkageName.empty()) { // From DWARF4: DIEs to which DW_AT_linkage_name may apply include: // TAG_common_block, TAG_constant, TAG_entry_point, TAG_subprogram and // TAG_variable.