MachineInstr::dump() now takes no arguments.
authorVikram S. Adve <vadve@cs.uiuc.edu>
Mon, 8 Jul 2002 23:01:46 +0000 (23:01 +0000)
committerVikram S. Adve <vadve@cs.uiuc.edu>
Mon, 8 Jul 2002 23:01:46 +0000 (23:01 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2828 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/InstrSelection/InstrForest.cpp
lib/Target/SparcV9/InstrSelection/InstrForest.cpp

index a95f1e377a0ce68e63bbb9d79a5698c2bb90d18e..cf355a57bda4aa905ee1fcb988a7e7fab52c48ac 100644 (file)
@@ -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 << ";  ";
   }
index a95f1e377a0ce68e63bbb9d79a5698c2bb90d18e..cf355a57bda4aa905ee1fcb988a7e7fab52c48ac 100644 (file)
@@ -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 << ";  ";
   }