diff options
author | Dan Gohman <gohman@apple.com> | 2007-05-24 14:33:05 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2007-05-24 14:33:05 +0000 |
commit | 237898ac1f6f6d1915282cc3afaa3c36435e76c0 (patch) | |
tree | c3c1ef5bcafdb6fbd1df34d45c29ae5be3a8113f /lib/CodeGen/SelectionDAG/SelectionDAG.cpp | |
parent | d520559d5863a703026ab1e47033c916978e56ac (diff) |
Add explicit qualification for namespace MVT members.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37320 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/SelectionDAG.cpp')
-rw-r--r-- | lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index d1232f270d..dddb1a957f 100644 --- a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp +++ b/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()) { |