From 098648af6a8bbb42823f18bf1d3f96afc163e55f Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sat, 26 Jun 2004 19:36:34 +0000 Subject: 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 --- lib/Target/SparcV9/InstrSelection/InstrForest.cpp | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'lib') 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 { -- cgit v1.1