summaryrefslogtreecommitdiff
path: root/lib/CodeGen
diff options
context:
space:
mode:
authorDavid Blaikie <dblaikie@gmail.com>2014-04-01 16:13:29 +0000
committerDavid Blaikie <dblaikie@gmail.com>2014-04-01 16:13:29 +0000
commit6817d33dda1d68393057fdaf3960af510c42d74a (patch)
treec1ce0cd488424ad20db7a8b7efb4b681454367b0 /lib/CodeGen
parentfabe5ce5661e096114b6a4cc978d312a1f7a8e7f (diff)
downloadllvm-6817d33dda1d68393057fdaf3960af510c42d74a.tar.gz
llvm-6817d33dda1d68393057fdaf3960af510c42d74a.tar.bz2
llvm-6817d33dda1d68393057fdaf3960af510c42d74a.tar.xz
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
Diffstat (limited to 'lib/CodeGen')
-rw-r--r--lib/CodeGen/AsmPrinter/DwarfDebug.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/AsmPrinter/DwarfDebug.cpp b/lib/CodeGen/AsmPrinter/DwarfDebug.cpp
index 7cb2567db2..f5847a0b92 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;