diff options
author | Pete Cooper <peter_cooper@apple.com> | 2015-05-20 22:37:48 +0000 |
---|---|---|
committer | Pete Cooper <peter_cooper@apple.com> | 2015-05-20 22:37:48 +0000 |
commit | 477300d3337c0b5446b97ae975aa0d47371ab083 (patch) | |
tree | 31cbbe1213760a0c75b0b566b67e2e1d03f8e06c /llvm/lib/CodeGen/AsmPrinter/DwarfUnit.cpp | |
parent | 506813892e7063b64fdccbecafce6e19c2db5942 (diff) | |
download | bcm5719-llvm-477300d3337c0b5446b97ae975aa0d47371ab083.tar.gz bcm5719-llvm-477300d3337c0b5446b97ae975aa0d47371ab083.zip |
Revert "Add bool to DebugLocDwarfExpression to control emitting comments."
This reverts commit 0037b6bcbc874aa1b93d7ce3ad8dba3753ee2d9d (r237827).
David Blaikie suggested some alternatives to this which are better. Reverting to apply a better solution later.
llvm-svn: 237849
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/DwarfUnit.cpp')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfUnit.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfUnit.cpp b/llvm/lib/CodeGen/AsmPrinter/DwarfUnit.cpp index 9d523dd3541..ee233f710f2 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfUnit.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/DwarfUnit.cpp @@ -47,7 +47,7 @@ GenerateDwarfTypeUnits("generate-type-units", cl::Hidden, DIEDwarfExpression::DIEDwarfExpression(const AsmPrinter &AP, DwarfUnit &DU, DIELoc &DIE) : DwarfExpression(*AP.MF->getSubtarget().getRegisterInfo(), - AP.getDwarfDebug()->getDwarfVersion(), false), + AP.getDwarfDebug()->getDwarfVersion()), AP(AP), DU(DU), DIE(DIE) {} void DIEDwarfExpression::EmitOp(uint8_t Op, const char* Comment) { |