diff options
author | Chris Lattner <sabre@nondot.org> | 2009-04-07 16:30:31 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-04-07 16:30:31 +0000 |
commit | 0d7304214178758c1eac6f8f3e8a598c5ed478c4 (patch) | |
tree | 34a287cd96d79f628a286ec214ed35d7915627ae /include/llvm/Bitcode | |
parent | 2941a65222583e608fd5a4c039e51c86975b7f11 (diff) | |
download | external_llvm-0d7304214178758c1eac6f8f3e8a598c5ed478c4.zip external_llvm-0d7304214178758c1eac6f8f3e8a598c5ed478c4.tar.gz external_llvm-0d7304214178758c1eac6f8f3e8a598c5ed478c4.tar.bz2 |
fix comment to reflect the implementation I ended up settling on.
Thanks to Duncan for noticing this
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@68518 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Bitcode')
-rw-r--r-- | include/llvm/Bitcode/BitCodes.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Bitcode/BitCodes.h b/include/llvm/Bitcode/BitCodes.h index 2be9e53..faf3fc7 100644 --- a/include/llvm/Bitcode/BitCodes.h +++ b/include/llvm/Bitcode/BitCodes.h @@ -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) {} |