mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-04 18:06:49 +00:00
MachineInstr::dump() now takes no arguments.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2828 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
11991ac70f
commit
bf82a42d1c
@ -131,7 +131,7 @@ InstructionNode::dumpNode(int indent) const
|
|||||||
cerr << "\tMachine Instructions: ";
|
cerr << "\tMachine Instructions: ";
|
||||||
|
|
||||||
for (unsigned int i=0; i < mvec.size(); ++i) {
|
for (unsigned int i=0; i < mvec.size(); ++i) {
|
||||||
mvec[i]->dump(0);
|
mvec[i]->dump();
|
||||||
if (i < mvec.size() - 1)
|
if (i < mvec.size() - 1)
|
||||||
cerr << "; ";
|
cerr << "; ";
|
||||||
}
|
}
|
||||||
|
@ -131,7 +131,7 @@ InstructionNode::dumpNode(int indent) const
|
|||||||
cerr << "\tMachine Instructions: ";
|
cerr << "\tMachine Instructions: ";
|
||||||
|
|
||||||
for (unsigned int i=0; i < mvec.size(); ++i) {
|
for (unsigned int i=0; i < mvec.size(); ++i) {
|
||||||
mvec[i]->dump(0);
|
mvec[i]->dump();
|
||||||
if (i < mvec.size() - 1)
|
if (i < mvec.size() - 1)
|
||||||
cerr << "; ";
|
cerr << "; ";
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user