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 | 3b62d7265ddb3a24147d3e641fbcb05c553b0138 (patch) | |
| tree | 4387f1a22126c3484c84a06bac176869c9b03614 /llvm/lib/CodeGen | |
| parent | 5179f91ef0571abc5e80c8d6f0cc9544631fd8d6 (diff) | |
| download | bcm5719-llvm-3b62d7265ddb3a24147d3e641fbcb05c553b0138.tar.gz bcm5719-llvm-3b62d7265ddb3a24147d3e641fbcb05c553b0138.zip | |
Rename ("shrinkify") MVT::isExtendedValueType to MVT::isExtendedVT.
llvm-svn: 37758
Diffstat (limited to 'llvm/lib/CodeGen')
| -rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp | 2 | ||||
| -rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp b/llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp index bc94a624f0f..a239aef16c0 100644 --- a/llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp @@ -1714,7 +1714,7 @@ SDOperand SelectionDAGLegalize::LegalizeOp(SDOperand Op) { break; case Expand: { SDOperand Lo, Hi; - assert(!MVT::isExtendedValueType(Node->getOperand(i).getValueType())&& + assert(!MVT::isExtendedVT(Node->getOperand(i).getValueType()) && "FIXME: TODO: implement returning non-legal vector types!"); ExpandOp(Node->getOperand(i), Lo, Hi); NewValues.push_back(Lo); diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index 5780eff67a7..6dcba0d9d6b 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp +++ b/llvm/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(), |

