From: Chris Lattner Date: Sat, 26 Jun 2004 19:36:34 +0000 (+0000) Subject: There is no reason to print ValueType here X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=098648af6a8bbb42823f18bf1d3f96afc163e55f;p=oota-llvm.git 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 --- diff --git a/lib/Target/SparcV9/InstrSelection/InstrForest.cpp b/lib/Target/SparcV9/InstrSelection/InstrForest.cpp index ee172fdd0c8..bb2c11ab185 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 {