[llvm] r205323 - Cleanup remaining use of removed variable to fix the build
David Blaikie
dblaikie at gmail.com
Tue Apr 1 09:13:29 PDT 2014
Author: dblaikie
Date: Tue Apr 1 11:13:29 2014
New Revision: 205323
URL: http://llvm.org/viewvc/llvm-project?rev=205323&view=rev
Log:
Cleanup remaining use of removed variable to fix the build
Modified:
llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.cpp
Modified: llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.cpp?rev=205323&r1=205322&r2=205323&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.cpp (original)
+++ llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.cpp Tue Apr 1 11:13:29 2014
@@ -184,7 +184,7 @@ DwarfDebug::DwarfDebug(AsmPrinter *A, Mo
DwarfInfoSectionSym = DwarfAbbrevSectionSym = DwarfStrSectionSym = 0;
DwarfDebugRangeSectionSym = DwarfDebugLocSectionSym = DwarfLineSectionSym = 0;
- DwarfAddrSectionSym = DwarfDebugLocDWOSectionSym = 0;
+ DwarfAddrSectionSym = 0;
DwarfAbbrevDWOSectionSym = DwarfStrDWOSectionSym = 0;
FunctionBeginSym = FunctionEndSym = 0;
CurFn = 0;
More information about the llvm-commits
mailing list