diff options
author | Chris Lattner <sabre@nondot.org> | 2004-06-26 19:36:34 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-06-26 19:36:34 +0000 |
commit | 098648af6a8bbb42823f18bf1d3f96afc163e55f (patch) | |
tree | 6a61b9417624f7e58bd8cc3aaaced8eb29ad3155 | |
parent | af754dbf65cffbd5d618a3a72087fe2e7908d01f (diff) | |
download | external_llvm-098648af6a8bbb42823f18bf1d3f96afc163e55f.zip external_llvm-098648af6a8bbb42823f18bf1d3f96afc163e55f.tar.gz external_llvm-098648af6a8bbb42823f18bf1d3f96afc163e55f.tar.bz2 |
There is no reason to print ValueType here
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14425 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/SparcV9/InstrSelection/InstrForest.cpp | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/lib/Target/SparcV9/InstrSelection/InstrForest.cpp b/lib/Target/SparcV9/InstrSelection/InstrForest.cpp index ee172fd..bb2c11a 100644 --- a/lib/Target/SparcV9/InstrSelection/InstrForest.cpp +++ b/lib/Target/SparcV9/InstrSelection/InstrForest.cpp @@ -123,18 +123,14 @@ void VRegNode::dumpNode(int indent) const { for (int i=0; i < indent; i++) std::cerr << " "; - - std::cerr << "VReg " << getValue() << "\t(type " - << (int) getValue()->getValueType() << ")" << "\n"; + std::cerr << "VReg " << getValue() << "\n"; } void ConstantNode::dumpNode(int indent) const { for (int i=0; i < indent; i++) std::cerr << " "; - - std::cerr << "Constant " << getValue() << "\t(type " - << (int) getValue()->getValueType() << ")" << "\n"; + std::cerr << "Constant " << getValue() << "\n"; } void LabelNode::dumpNode(int indent) const { |