From bf82a42d1c325b235923bddcd9b7f995027cc91c Mon Sep 17 00:00:00 2001 From: "Vikram S. Adve" Date: Mon, 8 Jul 2002 23:01:46 +0000 Subject: [PATCH] MachineInstr::dump() now takes no arguments. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2828 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/CodeGen/InstrSelection/InstrForest.cpp | 2 +- lib/Target/SparcV9/InstrSelection/InstrForest.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/CodeGen/InstrSelection/InstrForest.cpp b/lib/CodeGen/InstrSelection/InstrForest.cpp index a95f1e377a0..cf355a57bda 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 << "; "; } diff --git a/lib/Target/SparcV9/InstrSelection/InstrForest.cpp b/lib/Target/SparcV9/InstrSelection/InstrForest.cpp index a95f1e377a0..cf355a57bda 100644 --- a/lib/Target/SparcV9/InstrSelection/InstrForest.cpp +++ b/lib/Target/SparcV9/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 << "; "; }