From b187adcf5a2272e320cd00f650023b07c6920e31 Mon Sep 17 00:00:00 2001 From: Zhongxing Xu Date: Thu, 16 Oct 2008 01:21:44 +0000 Subject: [PATCH] Fix a calculation error in comments. llvm-svn: 57619 --- include/llvm/Bitcode/BitCodes.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/llvm/Bitcode/BitCodes.h b/include/llvm/Bitcode/BitCodes.h index f140cc3b19d..111b1e4fea1 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