[llvm] r229032 - Bitcode: Remove confusing '?' from r229004, NFC

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


Author: dexonsmith
Date: Thu Feb 12 20:43:38 2015
New Revision: 229032

URL: http://llvm.org/viewvc/llvm-project?rev=229032&view=rev
Log:
Bitcode: Remove confusing '?' from r229004, NFC

The name is always part of the record, it just might be empty.  Remove
the `?` for clarity.

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=229032&r1=229031&r2=229032&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Bitcode/LLVMBitCodes.h (original)
+++ llvm/trunk/include/llvm/Bitcode/LLVMBitCodes.h Thu Feb 12 20:43:38 2015
@@ -149,7 +149,7 @@ namespace bitc {
     METADATA_ATTACHMENT    = 11,  // [m x [value, [n x [id, mdnode]]]
     METADATA_GENERIC_DEBUG = 12,  // [distinct, tag, vers, header, n x md num]
     METADATA_SUBRANGE      = 13,  // [distinct, count, lo]
-    METADATA_ENUMERATOR    = 14,  // [distinct, value, name?]
+    METADATA_ENUMERATOR    = 14,  // [distinct, value, name]
     METADATA_BASIC_TYPE    = 15,  // [distinct, tag, name, size, align, enc]
     METADATA_FILE          = 16,  // [distinct, filename, directory]
     METADATA_DERIVED_TYPE  = 17,  // [distinct, ...]





More information about the llvm-commits mailing list