[llvm-commits] [llvm] r68518 - /llvm/trunk/include/llvm/Bitcode/BitCodes.h

Chris Lattner sabre at nondot.org
Tue Apr 7 09:30:33 PDT 2009


Author: lattner
Date: Tue Apr  7 11:30:31 2009
New Revision: 68518

URL: http://llvm.org/viewvc/llvm-project?rev=68518&view=rev
Log:
fix comment to reflect the implementation I ended up settling on.
Thanks to Duncan for noticing this

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

Modified: llvm/trunk/include/llvm/Bitcode/BitCodes.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Bitcode/BitCodes.h?rev=68518&r1=68517&r2=68518&view=diff

==============================================================================
--- llvm/trunk/include/llvm/Bitcode/BitCodes.h (original)
+++ llvm/trunk/include/llvm/Bitcode/BitCodes.h Tue Apr  7 11:30:31 2009
@@ -89,7 +89,7 @@
     VBR   = 2,  // A VBR field where Val specifies the width of each chunk.
     Array = 3,  // A sequence of fields, next field species elt encoding.
     Char6 = 4,  // A 6-bit fixed field which maps to [a-zA-Z0-9._].
-    Blob  = 5   // 8-bit aligned array of 8-bit characters.
+    Blob  = 5   // 32-bit aligned array of 8-bit characters.
   };
 
   explicit BitCodeAbbrevOp(uint64_t V) :  Val(V), IsLiteral(true) {}





More information about the llvm-commits mailing list