[llvm-commits] [llvm] r170982 - /llvm/trunk/include/llvm/CodeGen/ValueTypes.h

Craig Topper craig.topper at gmail.com
Sat Dec 22 00:22:02 PST 2012


Author: ctopper
Date: Sat Dec 22 02:22:01 2012
New Revision: 170982

URL: http://llvm.org/viewvc/llvm-project?rev=170982&view=rev
Log:
Add a comma to fix the build.

Modified:
    llvm/trunk/include/llvm/CodeGen/ValueTypes.h

Modified: llvm/trunk/include/llvm/CodeGen/ValueTypes.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/CodeGen/ValueTypes.h?rev=170982&r1=170981&r2=170982&view=diff
==============================================================================
--- llvm/trunk/include/llvm/CodeGen/ValueTypes.h (original)
+++ llvm/trunk/include/llvm/CodeGen/ValueTypes.h Sat Dec 22 02:22:01 2012
@@ -35,7 +35,7 @@
     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 @@
 
       // 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;





More information about the llvm-commits mailing list