diff options
author | Karl Schimpf <kschimpf@google.com> | 2013-07-02 16:25:51 -0700 |
---|---|---|
committer | Karl Schimpf <kschimpf@google.com> | 2013-07-02 16:25:51 -0700 |
commit | 66d0d318bec6819fee76f501e67c674cf7a112d0 (patch) | |
tree | 494f1835e02bcdaa8703f4e45ba6a3ee7eab227f /include/llvm/Bitcode | |
parent | 4390b1a9ac86937b9f9886119b5fa0ffc77295eb (diff) |
Remove comma at end of enumerator, to remove warning.
BUG=None
R=jvoung@chromium.org
Review URL: https://codereview.chromium.org/18042006
Diffstat (limited to 'include/llvm/Bitcode')
-rw-r--r-- | include/llvm/Bitcode/NaCl/NaClLLVMBitCodes.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Bitcode/NaCl/NaClLLVMBitCodes.h b/include/llvm/Bitcode/NaCl/NaClLLVMBitCodes.h index 7d270cd98c..a7c56b4aaf 100644 --- a/include/llvm/Bitcode/NaCl/NaClLLVMBitCodes.h +++ b/include/llvm/Bitcode/NaCl/NaClLLVMBitCodes.h @@ -202,7 +202,7 @@ namespace naclbitc { GLOBALVAR_ZEROFILL = 2, // ZEROFILL: [size] GLOBALVAR_DATA = 3, // DATA: [b0, b1, ...] GLOBALVAR_RELOC = 4, // RELOC: [val, [addend]] - GLOBALVAR_COUNT = 5, // COUNT: [n] + GLOBALVAR_COUNT = 5 // COUNT: [n] }; /// CastOpcodes - These are values used in the bitcode files to encode which |