Add an assertion
authorChris Lattner <sabre@nondot.org>
Tue, 28 Mar 2006 19:04:49 +0000 (19:04 +0000)
committerChris Lattner <sabre@nondot.org>
Tue, 28 Mar 2006 19:04:49 +0000 (19:04 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@27228 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/SelectionDAG/SelectionDAG.cpp

index 218ed8997f8319943f68c3563a625965e464b657..47c9cbc017c57d1835631b978e49653ea8be0cee 100644 (file)
@@ -634,6 +634,8 @@ SDOperand SelectionDAG::getZeroExtendInReg(SDOperand Op, MVT::ValueType VT) {
 
 SDOperand SelectionDAG::getConstant(uint64_t Val, MVT::ValueType VT) {
   assert(MVT::isInteger(VT) && "Cannot create FP integer constant!");
+  assert(!MVT::isVector(VT) && "Cannot create Vector ConstantSDNodes!");
+  
   // Mask out any bits that are not valid for this constant.
   if (VT != MVT::i64)
     Val &= ((uint64_t)1 << MVT::getSizeInBits(VT)) - 1;