[llvm-commits] CVS: llvm/lib/Target/TargetLowering.cpp
Evan Cheng
evan.cheng at apple.com
Thu Mar 2 22:59:12 PST 2006
Changes in directory llvm/lib/Target:
TargetLowering.cpp updated: 1.42 -> 1.43
---
Log message:
Number of NodeTypes now exceeds 128.
---
Diffs of the changes: (+1 -1)
TargetLowering.cpp | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
Index: llvm/lib/Target/TargetLowering.cpp
diff -u llvm/lib/Target/TargetLowering.cpp:1.42 llvm/lib/Target/TargetLowering.cpp:1.43
--- llvm/lib/Target/TargetLowering.cpp:1.42 Tue Feb 28 22:52:55 2006
+++ llvm/lib/Target/TargetLowering.cpp Fri Mar 3 00:58:59 2006
@@ -21,7 +21,7 @@
TargetLowering::TargetLowering(TargetMachine &tm)
: TM(tm), TD(TM.getTargetData()) {
- assert(ISD::BUILTIN_OP_END <= 128 &&
+ assert(ISD::BUILTIN_OP_END <= 156 &&
"Fixed size array in TargetLowering is not large enough!");
// All operations default to being supported.
memset(OpActions, 0, sizeof(OpActions));
More information about the llvm-commits
mailing list