fix some pastos
authorChris Lattner <sabre@nondot.org>
Wed, 5 Oct 2005 06:37:22 +0000 (06:37 +0000)
committerChris Lattner <sabre@nondot.org>
Wed, 5 Oct 2005 06:37:22 +0000 (06:37 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23635 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/SelectionDAG/SelectionDAG.cpp

index d861e15fcbc103f215a68e5e7e95ebac556192e9..35b6b5748cb45693d8407f42b89dbc29231b2b3f 100644 (file)
@@ -1947,7 +1947,7 @@ SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
     break;
   }
   case ISD::SELECT_CC: {
-    assert(Ops.size() == 5 && "TRUNCSTORE takes 5 operands!");
+    assert(Ops.size() == 5 && "SELECT_CC takes 5 operands!");
     assert(Ops[0].getValueType() == Ops[1].getValueType() &&
            "LHS and RHS of condition must have same type!");
     assert(Ops[2].getValueType() == Ops[3].getValueType() &&
@@ -1960,7 +1960,7 @@ SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
     break;
   }
   case ISD::BR_CC: {
-    assert(Ops.size() == 5 && "TRUNCSTORE takes 5 operands!");
+    assert(Ops.size() == 5 && "BR_CC takes 5 operands!");
     assert(Ops[2].getValueType() == Ops[3].getValueType() &&
            "LHS/RHS of comparison should match types!");
     // Use SimplifySetCC  to simplify SETCC's.