Fix a few more places in TableGen that need to handle EVT::vAny types.

llvm-svn: 78643
This commit is contained in:
Bob Wilson 2009-08-11 05:03:38 +00:00
parent 71527c1493
commit 781797f586
1 changed files with 4 additions and 2 deletions

View File

@ -493,7 +493,8 @@ CodeGenIntrinsic::CodeGenIntrinsic(Record *R) {
// overloaded, all the types can be specified directly.
assert(((!TyEl->isSubClassOf("LLVMExtendedElementVectorType") &&
!TyEl->isSubClassOf("LLVMTruncatedElementVectorType")) ||
VT == EVT::iAny) && "Expected iAny type");
VT == EVT::iAny || VT == EVT::vAny) &&
"Expected iAny or vAny type");
} else {
VT = getValueType(TyEl->getValueAsDef("VT"));
}
@ -524,7 +525,8 @@ CodeGenIntrinsic::CodeGenIntrinsic(Record *R) {
// overloaded, all the types can be specified directly.
assert(((!TyEl->isSubClassOf("LLVMExtendedElementVectorType") &&
!TyEl->isSubClassOf("LLVMTruncatedElementVectorType")) ||
VT == EVT::iAny) && "Expected iAny type");
VT == EVT::iAny || VT == EVT::vAny) &&
"Expected iAny or vAny type");
} else
VT = getValueType(TyEl->getValueAsDef("VT"));
if (EVT(VT).isOverloaded()) {