diff options
author | Nico Weber <thakis@chromium.org> | 2020-01-08 22:50:49 -0500 |
---|---|---|
committer | Nico Weber <thakis@chromium.org> | 2020-01-08 22:50:49 -0500 |
commit | 71d64f72f934631aa2f12b9542c23f74f256f494 (patch) | |
tree | 4e40ee1227481bbceefbccfe20f4e9685e4f461c /llvm/lib/CodeGen/SelectionDAG | |
parent | 3ef05d85be8c3666ebfa3ad986eb334da5195a47 (diff) | |
download | bcm5719-llvm-71d64f72f934631aa2f12b9542c23f74f256f494.tar.gz bcm5719-llvm-71d64f72f934631aa2f12b9542c23f74f256f494.zip |
Revert "[MIR] Target specific MIR formating and parsing"
This reverts commit 3ef05d85be8c3666ebfa3ad986eb334da5195a47.
It broke check-llvm on many bots, see comments on D69836.
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp index a12d708c2dd..6fd71393bf3 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp @@ -480,7 +480,7 @@ static void printMemOperand(raw_ostream &OS, const MachineMemOperand &MMO, if (MF) MST.incorporateFunction(MF->getFunction()); SmallVector<StringRef, 0> SSNs; - MMO.print(OS, MST, SSNs, Ctx, MFI, TII, MF->getTarget().getMIRFormatter()); + MMO.print(OS, MST, SSNs, Ctx, MFI, TII); } static void printMemOperand(raw_ostream &OS, const MachineMemOperand &MMO, |