diff options
author | Chris Lattner <sabre@nondot.org> | 2005-08-25 17:07:09 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-08-25 17:07:09 +0000 |
commit | a64d4cddf547524c72f67587ac399d41918a6fb4 (patch) | |
tree | c70f7a4474fae0370ffb1ccd4c0f4e91dcb75c76 /include/llvm/CodeGen/ValueTypes.h | |
parent | 45a8036df04a2d991dd437a3de1ffa21f6544f6d (diff) |
add an enum value
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23048 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/ValueTypes.h')
-rw-r--r-- | include/llvm/CodeGen/ValueTypes.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/llvm/CodeGen/ValueTypes.h b/include/llvm/CodeGen/ValueTypes.h index 7efad1103c..91c3526f0d 100644 --- a/include/llvm/CodeGen/ValueTypes.h +++ b/include/llvm/CodeGen/ValueTypes.h @@ -40,8 +40,9 @@ namespace MVT { // MVT = Machine Value Types 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. }; |