diff options
author | Vikram S. Adve <vadve@cs.uiuc.edu> | 2002-07-08 23:01:46 +0000 |
---|---|---|
committer | Vikram S. Adve <vadve@cs.uiuc.edu> | 2002-07-08 23:01:46 +0000 |
commit | bf82a42d1c325b235923bddcd9b7f995027cc91c (patch) | |
tree | 8d43a1c2a0b615e56c24940487d44cfaf596ed2b /lib/CodeGen/InstrSelection/InstrForest.cpp | |
parent | 11991ac70f25d8224d026e76af4f1ed41576eac9 (diff) |
MachineInstr::dump() now takes no arguments.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2828 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/InstrSelection/InstrForest.cpp')
-rw-r--r-- | lib/CodeGen/InstrSelection/InstrForest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/InstrSelection/InstrForest.cpp b/lib/CodeGen/InstrSelection/InstrForest.cpp index a95f1e377a..cf355a57bd 100644 --- a/lib/CodeGen/InstrSelection/InstrForest.cpp +++ b/lib/CodeGen/InstrSelection/InstrForest.cpp @@ -131,7 +131,7 @@ InstructionNode::dumpNode(int indent) const cerr << "\tMachine Instructions: "; for (unsigned int i=0; i < mvec.size(); ++i) { - mvec[i]->dump(0); + mvec[i]->dump(); if (i < mvec.size() - 1) cerr << "; "; } |