[llvm-commits] CVS: llvm/include/llvm/CodeGen/ValueTypes.h
Chris Lattner
lattner at cs.uiuc.edu
Wed Jan 5 14:14:29 PST 2005
Changes in directory llvm/include/llvm/CodeGen:
ValueTypes.h updated: 1.6 -> 1.7
---
Log message:
Add a list end sentinal
---
Diffs of the changes: (+2 -0)
Index: llvm/include/llvm/CodeGen/ValueTypes.h
diff -u llvm/include/llvm/CodeGen/ValueTypes.h:1.6 llvm/include/llvm/CodeGen/ValueTypes.h:1.7
--- llvm/include/llvm/CodeGen/ValueTypes.h:1.6 Sat Jan 1 09:58:41 2005
+++ llvm/include/llvm/CodeGen/ValueTypes.h Wed Jan 5 16:14:14 2005
@@ -39,6 +39,8 @@
f128 = 10, // This is a 128 bit floating point value
isVoid = 11, // This has no value
+
+ LAST_VALUETYPE, // This always remains at the end of the list.
};
static inline bool isInteger(ValueType VT) {
More information about the llvm-commits
mailing list