mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-01 12:24:24 +00:00
Add a comma to fix the build.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@170982 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -35,7 +35,7 @@ namespace llvm {
|
|||||||
enum SimpleValueType {
|
enum SimpleValueType {
|
||||||
// INVALID_SIMPLE_VALUE_TYPE - Simple value types less than zero are
|
// INVALID_SIMPLE_VALUE_TYPE - Simple value types less than zero are
|
||||||
// considered extended value types.
|
// 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
|
// If you change this numbering, you must change the values in
|
||||||
// ValueTypes.td as well!
|
// ValueTypes.td as well!
|
||||||
@ -141,7 +141,7 @@ namespace llvm {
|
|||||||
|
|
||||||
// iPTR - An int value the size of the pointer of the current
|
// iPTR - An int value the size of the pointer of the current
|
||||||
// target. This should only be used internal to tblgen!
|
// target. This should only be used internal to tblgen!
|
||||||
iPTR = 255,
|
iPTR = 255
|
||||||
};
|
};
|
||||||
|
|
||||||
SimpleValueType SimpleTy;
|
SimpleValueType SimpleTy;
|
||||||
|
Reference in New Issue
Block a user