[llvm] r229031 - Bitcode: Add trailing comma to MetadataCodes, NFC

Duncan P. N. Exon Smith dexonsmith at apple.com
Thu Feb 12 18:41:36 PST 2015


Author: dexonsmith
Date: Thu Feb 12 20:41:36 2015
New Revision: 229031

URL: http://llvm.org/viewvc/llvm-project?rev=229031&view=rev
Log:
Bitcode: Add trailing comma to MetadataCodes, NFC

Suggested in the review of r229004, this should simplify diffs
in the future.

Modified:
    llvm/trunk/include/llvm/Bitcode/LLVMBitCodes.h

Modified: llvm/trunk/include/llvm/Bitcode/LLVMBitCodes.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Bitcode/LLVMBitCodes.h?rev=229031&r1=229030&r2=229031&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Bitcode/LLVMBitCodes.h (original)
+++ llvm/trunk/include/llvm/Bitcode/LLVMBitCodes.h Thu Feb 12 20:41:36 2015
@@ -166,7 +166,7 @@ namespace bitc {
     METADATA_LOCAL_VAR     = 28,  // [distinct, ...]
     METADATA_EXPRESSION    = 29,  // [distinct, n x element]
     METADATA_OBJC_PROPERTY = 30,  // [distinct, name, file, line, ...]
-    METADATA_IMPORTED_ENTITY=31   // [distinct, tag, scope, entity, line, name]
+    METADATA_IMPORTED_ENTITY=31,  // [distinct, tag, scope, entity, line, name]
   };
 
   // The constants block (CONSTANTS_BLOCK_ID) describes emission for each





More information about the llvm-commits mailing list