fix comment to reflect the implementation I ended up settling on.
authorChris Lattner <sabre@nondot.org>
Tue, 7 Apr 2009 16:30:31 +0000 (16:30 +0000)
committerChris Lattner <sabre@nondot.org>
Tue, 7 Apr 2009 16:30:31 +0000 (16:30 +0000)
Thanks to Duncan for noticing this

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@68518 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Bitcode/BitCodes.h

index 2be9e530f26e8844185cee3166c2956267344287..faf3fc73e882c828db2a0e9894588745242a4ae3 100644 (file)
@@ -89,7 +89,7 @@ public:
     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) {}