summaryrefslogtreecommitdiff
path: root/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2007-05-18 17:52:13 +0000
committerDan Gohman <gohman@apple.com>2007-05-18 17:52:13 +0000
commitb55757ec5f6f0218342a8910e1bbd9f018adc7d7 (patch)
tree0aff28b2706fc1788269d4ba9d10a639dba9c7c7 /lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp
parent6092ca155610b6c4cb16f21a1dad1f990758730a (diff)
downloadllvm-b55757ec5f6f0218342a8910e1bbd9f018adc7d7.tar.gz
llvm-b55757ec5f6f0218342a8910e1bbd9f018adc7d7.tar.bz2
llvm-b55757ec5f6f0218342a8910e1bbd9f018adc7d7.tar.xz
Qualify several calls to functions in the MVT namespace, for consistency.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37230 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp')
-rw-r--r--lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp b/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp
index 5ff8d8769a..dbe101f9f4 100644
--- a/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp
+++ b/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp
@@ -145,7 +145,7 @@ std::string DOTGraphTraits<SelectionDAG*>::getNodeLabel(const SDNode *Node,
else
Op += "<null:" + itostr(M->getOffset()) + ">";
} else if (const VTSDNode *N = dyn_cast<VTSDNode>(Node)) {
- Op = Op + " VT=" + getValueTypeString(N->getVT());
+ Op = Op + " VT=" + MVT::getValueTypeString(N->getVT());
} else if (const StringSDNode *N = dyn_cast<StringSDNode>(Node)) {
Op = Op + "\"" + N->getValue() + "\"";
} else if (const LoadSDNode *LD = dyn_cast<LoadSDNode>(Node)) {