mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-06 09:44:39 +00:00
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
This commit is contained in:
parent
af754dbf65
commit
098648af6a
@ -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 {
|
||||
|
Loading…
x
Reference in New Issue
Block a user