diff options
author | Dan Gohman <gohman@apple.com> | 2007-06-27 16:08:04 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2007-06-27 16:08:04 +0000 |
commit | 6595cb3000d7f5f8e9a76d556aa8609db91b7887 (patch) | |
tree | e2a2cb70cde1892b127221e4dd937b363056e9e8 /lib/CodeGen/SelectionDAG/SelectionDAG.cpp | |
parent | c56b9e9f55ea4e26f51d28bb46d2005f0a08de1a (diff) |
Rename ("shrinkify") MVT::isExtendedValueType to MVT::isExtendedVT.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37758 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 5780eff67a..6dcba0d9d6 100644 --- a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp +++ b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp @@ -2475,7 +2475,7 @@ SDOperand SelectionDAG::getNode(unsigned Opcode, SDVTList VTList, } SDVTList SelectionDAG::getVTList(MVT::ValueType VT) { - if (!MVT::isExtendedValueType(VT)) + if (!MVT::isExtendedVT(VT)) return makeVTList(SDNode::getValueTypeList(VT), 1); for (std::list<std::vector<MVT::ValueType> >::iterator I = VTList.begin(), |