summaryrefslogtreecommitdiffstats
path: root/include/llvm
diff options
context:
space:
mode:
authorCraig Topper <craig.topper@gmail.com>2012-12-22 08:22:01 +0000
committerCraig Topper <craig.topper@gmail.com>2012-12-22 08:22:01 +0000
commitb44c1f90e465a1905cff00212929520ab1f36b64 (patch)
treef1fcdfb6b09bb1fd320017bf67a349245a046284 /include/llvm
parent3f92b1bda0b756d2034577f3e4165f16061bfe65 (diff)
downloadexternal_llvm-b44c1f90e465a1905cff00212929520ab1f36b64.zip
external_llvm-b44c1f90e465a1905cff00212929520ab1f36b64.tar.gz
external_llvm-b44c1f90e465a1905cff00212929520ab1f36b64.tar.bz2
Add a comma to fix the build.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@170982 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm')
-rw-r--r--include/llvm/CodeGen/ValueTypes.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/CodeGen/ValueTypes.h b/include/llvm/CodeGen/ValueTypes.h
index c258555..381bbd3 100644
--- a/include/llvm/CodeGen/ValueTypes.h
+++ b/include/llvm/CodeGen/ValueTypes.h
@@ -35,7 +35,7 @@ namespace llvm {
enum SimpleValueType {
// INVALID_SIMPLE_VALUE_TYPE - Simple value types less than zero are
// considered extended value types.
- INVALID_SIMPLE_VALUE_TYPE = -1
+ INVALID_SIMPLE_VALUE_TYPE = -1,
// If you change this numbering, you must change the values in
// ValueTypes.td as well!
@@ -141,7 +141,7 @@ namespace llvm {
// iPTR - An int value the size of the pointer of the current
// target. This should only be used internal to tblgen!
- iPTR = 255,
+ iPTR = 255
};
SimpleValueType SimpleTy;