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 | a9c93af49fd11bfea905caa5fba3bf5cf86c9066 (patch) | |
tree | 75b0dea9b3edebd99b54e87a2a5ca737aa7aa3ed /llvm/lib/CodeGen | |
parent | f0b84cefb0b11df43906bf00ebed7b40d05f4b6c (diff) | |
download | bcm5719-llvm-a9c93af49fd11bfea905caa5fba3bf5cf86c9066.tar.gz bcm5719-llvm-a9c93af49fd11bfea905caa5fba3bf5cf86c9066.zip |
MachineInstr::dump() now takes no arguments.
llvm-svn: 2828
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r-- | llvm/lib/CodeGen/InstrSelection/InstrForest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/InstrSelection/InstrForest.cpp b/llvm/lib/CodeGen/InstrSelection/InstrForest.cpp index a95f1e377a0..cf355a57bda 100644 --- a/llvm/lib/CodeGen/InstrSelection/InstrForest.cpp +++ b/llvm/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 << "; "; } |