Revert invalid r111792. Jump tables are not broken on x86-64 / coff,
authorAnton Korobeynikov <asl@math.spbu.ru>
Mon, 23 Aug 2010 07:38:51 +0000 (07:38 +0000)
committerAnton Korobeynikov <asl@math.spbu.ru>
Mon, 23 Aug 2010 07:38:51 +0000 (07:38 +0000)
it's COFF emitter which does not support differences of two symbols
(and needs to be fixed). GAS is pretty fine with code produced.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@111801 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/X86/X86ISelLowering.cpp

index 9b0c5297e443a1ed6723aac8df610192dd46f370..a2e2806c2e618460fdcbdd6030bfc94d653027f7 100644 (file)
@@ -1029,12 +1029,6 @@ X86TargetLowering::X86TargetLowering(X86TargetMachine &TM)
   maxStoresPerMemmove = 3; // For @llvm.memmove -> sequence of stores
   setPrefLoopAlignment(16);
   benefitFromCodePlacementOpt = true;
-
-  // FIXME: Jump tables are currently broken for 64 bit COFF.
-  // See PR7960.
-  if (Subtarget->is64Bit() && Subtarget->isTargetCOFF()) {
-    DisableJumpTables = true;
-  }
 }