diff options
author | Zhongxing Xu <xuzhongxing@gmail.com> | 2008-10-16 01:21:44 +0000 |
---|---|---|
committer | Zhongxing Xu <xuzhongxing@gmail.com> | 2008-10-16 01:21:44 +0000 |
commit | 1a26daa9c336abd7790d5e3366ed46288248aca0 (patch) | |
tree | c76ae0bc2992900dbeecf50890e19be09d8aa9bc | |
parent | 131161bc6e490624ab3b906d5a5233050dae4a99 (diff) |
Fix a calculation error in comments.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@57619 91177308-0d34-0410-b5e6-96231b3b80d8
-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 f140cc3b19..111b1e4fea 100644 --- a/include/llvm/Bitcode/BitCodes.h +++ b/include/llvm/Bitcode/BitCodes.h @@ -27,7 +27,7 @@ namespace bitc { enum StandardWidths { BlockIDWidth = 8, // We use VBR-8 for block IDs. CodeLenWidth = 4, // Codelen are VBR-4. - BlockSizeWidth = 32 // BlockSize up to 2^32 32-bit words = 32GB per block. + BlockSizeWidth = 32 // BlockSize up to 2^32 32-bit words = 16GB per block. }; // The standard abbrev namespace always has a way to exit a block, enter a |