[llvm-commits] CVS: llvm/include/llvm/Target/TargetLowering.h

Evan Cheng evan.cheng at apple.com
Thu Mar 2 22:59:12 PST 2006



Changes in directory llvm/include/llvm/Target:

TargetLowering.h updated: 1.57 -> 1.58
---
Log message:

Number of NodeTypes now exceeds 128.


---
Diffs of the changes:  (+2 -2)

 TargetLowering.h |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)


Index: llvm/include/llvm/Target/TargetLowering.h
diff -u llvm/include/llvm/Target/TargetLowering.h:1.57 llvm/include/llvm/Target/TargetLowering.h:1.58
--- llvm/include/llvm/Target/TargetLowering.h:1.57	Tue Feb 28 22:52:29 2006
+++ llvm/include/llvm/Target/TargetLowering.h	Fri Mar  3 00:58:59 2006
@@ -642,7 +642,7 @@
   /// Most operations are Legal (aka, supported natively by the target), but
   /// operations that are not should be described.  Note that operations on
   /// non-legal value types are not described here.
-  uint64_t OpActions[128];
+  uint64_t OpActions[156];
   
   ValueTypeActionImpl ValueTypeActions;
 
@@ -654,7 +654,7 @@
   /// TargetDAGCombineArray - Targets can specify ISD nodes that they would
   /// like PerformDAGCombine callbacks for by calling setTargetDAGCombine(),
   /// which sets a bit in this array.
-  unsigned char TargetDAGCombineArray[128/(sizeof(unsigned char)*8)];
+  unsigned char TargetDAGCombineArray[156/(sizeof(unsigned char)*8)];
   
 protected:
   /// When lowering %llvm.memset this field specifies the maximum number of






More information about the llvm-commits mailing list