[llvm-commits] CVS: llvm/include/llvm/CodeGen/ValueTypes.h
Chris Lattner
lattner at cs.uiuc.edu
Thu Aug 25 10:06:45 PDT 2005
Changes in directory llvm/include/llvm/CodeGen:
ValueTypes.h updated: 1.11 -> 1.12
---
Log message:
add an enum value
---
Diffs of the changes: (+2 -1)
ValueTypes.h | 3 ++-
1 files changed, 2 insertions(+), 1 deletion(-)
Index: llvm/include/llvm/CodeGen/ValueTypes.h
diff -u llvm/include/llvm/CodeGen/ValueTypes.h:1.11 llvm/include/llvm/CodeGen/ValueTypes.h:1.12
--- llvm/include/llvm/CodeGen/ValueTypes.h:1.11 Thu Apr 21 15:38:00 2005
+++ llvm/include/llvm/CodeGen/ValueTypes.h Thu Aug 25 12:06:34 2005
@@ -40,8 +40,9 @@
f64 = 8, // This is a 64 bit floating point value
f80 = 9, // This is a 80 bit floating point value
f128 = 10, // This is a 128 bit floating point value
+ Flag = 11, // This is a condition code or machine flag.
- isVoid = 11, // This has no value
+ isVoid = 12, // This has no value
LAST_VALUETYPE, // This always remains at the end of the list.
};
More information about the llvm-commits
mailing list