summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen/AsmPrinter/DIE.cpp
diff options
context:
space:
mode:
authorKeno Fischer <kfischer@college.harvard.edu>2016-12-08 01:56:23 +0000
committerKeno Fischer <kfischer@college.harvard.edu>2016-12-08 01:56:23 +0000
commitd4ea4c18f13d670ded302dd3a592fc8df8a9938d (patch)
treeb8a1b23031941634317fc201fc745ec6068f4b07 /llvm/lib/CodeGen/AsmPrinter/DIE.cpp
parent460218fb7d13132e4ea3def3b75eb43aa505b2db (diff)
downloadbcm5719-llvm-d4ea4c18f13d670ded302dd3a592fc8df8a9938d.tar.gz
bcm5719-llvm-d4ea4c18f13d670ded302dd3a592fc8df8a9938d.zip
Revert "[CodeGen] Fix invalid DWARF info on Win64"
Appears to break on build bots. Reverting pending investigation. llvm-svn: 289014
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/DIE.cpp')
-rw-r--r--llvm/lib/CodeGen/AsmPrinter/DIE.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DIE.cpp b/llvm/lib/CodeGen/AsmPrinter/DIE.cpp
index a328851410f..3fbb52f1380 100644
--- a/llvm/lib/CodeGen/AsmPrinter/DIE.cpp
+++ b/llvm/lib/CodeGen/AsmPrinter/DIE.cpp
@@ -642,7 +642,7 @@ void DIEEntry::EmitValue(const AsmPrinter *AP, dwarf::Form Form) const {
MCSection *Section = Unit->getSection();
if (Section) {
const MCSymbol *SectionSym = Section->getBeginSymbol();
- AP->EmitLabelPlusOffset(SectionSym, Addr, SizeOf(AP, Form), true);
+ AP->EmitLabelPlusOffset(SectionSym, Addr, SizeOf(AP, Form));
return;
}
}
OpenPOWER on IntegriCloud