remove some dead (always dynamically false) flags
authorChris Lattner <sabre@nondot.org>
Fri, 6 May 2005 22:35:09 +0000 (22:35 +0000)
committerChris Lattner <sabre@nondot.org>
Fri, 6 May 2005 22:35:09 +0000 (22:35 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21752 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Bytecode/Reader/Reader.cpp
lib/Bytecode/Reader/Reader.h

index e48f64178c17cf76f6761ad9d1126796199d2d06..7e5bed6989775436cab8b8c7a7efb3a290164eeb 100644 (file)
@@ -1991,9 +1991,6 @@ void BytecodeReader::ParseVersionInfo() {
   has32BitTypes = false;
   hasNoDependentLibraries = false;
   hasAlignment = false;
-  hasInconsistentBBSlotNums = false;
-  hasVBRByteTypes = false;
-  hasUnnecessaryModuleBlockId = false;
   hasNoUndefValue = false;
   hasNoFlagsForFunctions = false;
   hasNoUnreachableInst = false;
@@ -2074,24 +2071,7 @@ void BytecodeReader::ParseVersionInfo() {
 
   case 5:               // 1.4 (Released)
     break;
-#if 0
-    // FIXME: NONE of this is implemented yet!
-
-    // 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.
-    hasInconsistentBBSlotNums = true;
-
-    // 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.
-    hasVBRByteTypes = true;
-
-    // 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.
-    hasUnnecessaryModuleBlockId = true;
-#endif
+
   default:
     error("Unknown bytecode version number: " + itostr(RevisionNum));
   }
index 425222b38d1c31bec26a894682bd4ec1622113c3..6f9f859aeef54363734d8ab8dfdfb7d7ad139480 100644 (file)
@@ -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.