From: David Blaikie Date: Tue, 1 Apr 2014 16:13:29 +0000 (+0000) Subject: Cleanup remaining use of removed variable to fix the build X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=6817d33dda1d68393057fdaf3960af510c42d74a;p=oota-llvm.git Cleanup remaining use of removed variable to fix the build git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@205323 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/AsmPrinter/DwarfDebug.cpp b/lib/CodeGen/AsmPrinter/DwarfDebug.cpp index 7cb2567db26..f5847a0b925 100644 --- a/lib/CodeGen/AsmPrinter/DwarfDebug.cpp +++ b/lib/CodeGen/AsmPrinter/DwarfDebug.cpp @@ -184,7 +184,7 @@ DwarfDebug::DwarfDebug(AsmPrinter *A, Module *M) DwarfInfoSectionSym = DwarfAbbrevSectionSym = DwarfStrSectionSym = 0; DwarfDebugRangeSectionSym = DwarfDebugLocSectionSym = DwarfLineSectionSym = 0; - DwarfAddrSectionSym = DwarfDebugLocDWOSectionSym = 0; + DwarfAddrSectionSym = 0; DwarfAbbrevDWOSectionSym = DwarfStrDWOSectionSym = 0; FunctionBeginSym = FunctionEndSym = 0; CurFn = 0;