[llvm-commits] CVS: llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
Chris Lattner
lattner at cs.uiuc.edu
Tue Oct 4 23:37:34 PDT 2005
Changes in directory llvm/lib/CodeGen/SelectionDAG:
SelectionDAG.cpp updated: 1.195 -> 1.196
---
Log message:
fix some pastos
---
Diffs of the changes: (+2 -2)
SelectionDAG.cpp | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
Index: llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
diff -u llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp:1.195 llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp:1.196
--- llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp:1.195 Wed Oct 5 01:35:28 2005
+++ llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp Wed Oct 5 01:37:22 2005
@@ -1947,7 +1947,7 @@
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 @@
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.
More information about the llvm-commits
mailing list