diff options
author | Chris Lattner <sabre@nondot.org> | 2005-05-06 22:35:09 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-05-06 22:35:09 +0000 |
commit | 9bbe58628bbf401cb8483b05948a138fbc7f2e9f (patch) | |
tree | 5cefe14fe954b17591ac502c4fc1677eb7f52108 /llvm/lib/Bytecode/Reader/Reader.h | |
parent | 129535c7870cca65431bc952515ed0bd3412d7e7 (diff) | |
download | bcm5719-llvm-9bbe58628bbf401cb8483b05948a138fbc7f2e9f.tar.gz bcm5719-llvm-9bbe58628bbf401cb8483b05948a138fbc7f2e9f.zip |
remove some dead (always dynamically false) flags
llvm-svn: 21752
Diffstat (limited to 'llvm/lib/Bytecode/Reader/Reader.h')
-rw-r--r-- | llvm/lib/Bytecode/Reader/Reader.h | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/llvm/lib/Bytecode/Reader/Reader.h b/llvm/lib/Bytecode/Reader/Reader.h index 425222b38d1..6f9f859aeef 100644 --- a/llvm/lib/Bytecode/Reader/Reader.h +++ b/llvm/lib/Bytecode/Reader/Reader.h @@ -321,21 +321,6 @@ private: // unreachable instruction. bool hasNoUnreachableInst; - // In version 5, basic blocks have a minimum index of 0 whereas all the - // other primitives have a minimum index of 1 (because 0 is the "null" - // value. In version 5, we made this consistent. - bool hasInconsistentBBSlotNums; - - // In version 5, the types SByte and UByte were encoded as vbr_uint so that - // signed values > 63 and unsigned values >127 would be encoded as two - // bytes. In version 5, they are encoded directly in a single byte. - bool hasVBRByteTypes; - - // In version 5, modules begin with a "Module Block" which encodes a 4-byte - // integer value 0x01 to identify the module block. This is unnecessary and - // removed in version 5. - bool hasUnnecessaryModuleBlockId; - /// CompactionTypes - If a compaction table is active in the current function, /// this is the mapping that it contains. We keep track of what resolved type /// it is as well as what global type entry it is. |