summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2007-05-24 14:33:05 +0000
committerDan Gohman <gohman@apple.com>2007-05-24 14:33:05 +0000
commit703e0f86085d6cc9e8c916ea0e163231ea964cf3 (patch)
tree9df5e200c149aa51eec5bf6f72b56ccc4f23316c /llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
parent5d4bb4f23070b2ebc61d159dd556f42bdcbba494 (diff)
downloadbcm5719-llvm-703e0f86085d6cc9e8c916ea0e163231ea964cf3.tar.gz
bcm5719-llvm-703e0f86085d6cc9e8c916ea0e163231ea964cf3.zip
Add explicit qualification for namespace MVT members.
llvm-svn: 37320
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp')
-rw-r--r--llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
index d1232f270da..dddb1a957f7 100644
--- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
+++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
@@ -3048,7 +3048,7 @@ void SDNode::dump(const SelectionDAG *G) const {
else
cerr << "<null:" << M->getOffset() << ">";
} else if (const VTSDNode *N = dyn_cast<VTSDNode>(this)) {
- cerr << ":" << getValueTypeString(N->getVT());
+ cerr << ":" << MVT::getValueTypeString(N->getVT());
} else if (const LoadSDNode *LD = dyn_cast<LoadSDNode>(this)) {
bool doExt = true;
switch (LD->getExtensionType()) {
OpenPOWER on IntegriCloud