diff options
author | Eric Christopher <echristo@gmail.com> | 2015-03-02 19:01:47 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2015-03-02 19:01:47 +0000 |
commit | d8cacd2e9727439ab83844e4bdcca59eaed4074c (patch) | |
tree | 52f57d9adfac9f163aef26b81cd748df63935dea /llvm/lib/CodeGen/AsmPrinter/AsmPrinterDwarf.cpp | |
parent | b111ec94b3474c4eff15b19a74cd815cdb469aaa (diff) | |
download | bcm5719-llvm-d8cacd2e9727439ab83844e4bdcca59eaed4074c.tar.gz bcm5719-llvm-d8cacd2e9727439ab83844e4bdcca59eaed4074c.zip |
For the dwarf expression code get the subtarget off of the current
MachineFunction.
llvm-svn: 230990
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/AsmPrinterDwarf.cpp')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/AsmPrinterDwarf.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/AsmPrinterDwarf.cpp b/llvm/lib/CodeGen/AsmPrinter/AsmPrinterDwarf.cpp index d602660b3bd..1b4e4cfc4f8 100644 --- a/llvm/lib/CodeGen/AsmPrinter/AsmPrinterDwarf.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/AsmPrinterDwarf.cpp @@ -16,6 +16,7 @@ #include "DwarfExpression.h" #include "llvm/ADT/Twine.h" #include "llvm/CodeGen/AsmPrinter.h" +#include "llvm/CodeGen/MachineFunction.h" #include "llvm/CodeGen/MachineModuleInfo.h" #include "llvm/IR/DataLayout.h" #include "llvm/MC/MCAsmInfo.h" @@ -191,7 +192,7 @@ void AsmPrinter::EmitSectionOffset(const MCSymbol *Label, /// EmitDwarfRegOp - Emit dwarf register operation. void AsmPrinter::EmitDwarfRegOp(ByteStreamer &Streamer, const MachineLocation &MLoc) const { - DebugLocDwarfExpression Expr(*TM.getSubtargetImpl()->getRegisterInfo(), + DebugLocDwarfExpression Expr(*MF->getSubtarget().getRegisterInfo(), getDwarfDebug()->getDwarfVersion(), Streamer); const MCRegisterInfo *MRI = MMI->getContext().getRegisterInfo(); int Reg = MRI->getDwarfRegNum(MLoc.getReg(), false); |