diff options
author | Bob Wilson <bob.wilson@apple.com> | 2009-08-11 05:03:38 +0000 |
---|---|---|
committer | Bob Wilson <bob.wilson@apple.com> | 2009-08-11 05:03:38 +0000 |
commit | 7b70d4fdd784e412864279c6bf86b81f52c41719 (patch) | |
tree | d231f800df3fcf95f8776355a78aa2fa463aa260 | |
parent | 7695367a901dc99e809538f6e374dd101f5518fe (diff) | |
download | external_llvm-7b70d4fdd784e412864279c6bf86b81f52c41719.zip external_llvm-7b70d4fdd784e412864279c6bf86b81f52c41719.tar.gz external_llvm-7b70d4fdd784e412864279c6bf86b81f52c41719.tar.bz2 |
Fix a few more places in TableGen that need to handle EVT::vAny types.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78643 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | utils/TableGen/CodeGenTarget.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/utils/TableGen/CodeGenTarget.cpp b/utils/TableGen/CodeGenTarget.cpp index 28ee33c..9b639ec 100644 --- a/utils/TableGen/CodeGenTarget.cpp +++ b/utils/TableGen/CodeGenTarget.cpp @@ -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()) { |