[llvm-commits] [llvm] r57619 - /llvm/trunk/include/llvm/Bitcode/BitCodes.h
Zhongxing Xu
xuzhongxing at gmail.com
Wed Oct 15 18:21:46 PDT 2008
Author: zhongxingxu
Date: Wed Oct 15 20:21:44 2008
New Revision: 57619
URL: http://llvm.org/viewvc/llvm-project?rev=57619&view=rev
Log:
Fix a calculation error in comments.
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=57619&r1=57618&r2=57619&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Bitcode/BitCodes.h (original)
+++ llvm/trunk/include/llvm/Bitcode/BitCodes.h Wed Oct 15 20:21:44 2008
@@ -27,7 +27,7 @@
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
More information about the llvm-commits
mailing list