summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen/SelectionDAG
diff options
context:
space:
mode:
authorNate Begeman <natebegeman@mac.com>2006-04-22 23:51:56 +0000
committerNate Begeman <natebegeman@mac.com>2006-04-22 23:51:56 +0000
commitecb1dafd3d252399f29e8326753be48be95335a0 (patch)
tree4412ed0a495dec6dc27925184ef4a603eb421ba6 /llvm/lib/CodeGen/SelectionDAG
parent9f0b13c885f80c1e675f0b27f1242dfe76eb274b (diff)
downloadbcm5719-llvm-ecb1dafd3d252399f29e8326753be48be95335a0.tar.gz
bcm5719-llvm-ecb1dafd3d252399f29e8326753be48be95335a0.zip
Turn of jump tables for a bit, there are still some issues to work out with
updating the machine CFG. llvm-svn: 27949
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG')
-rw-r--r--llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
index 7fcaaf59af9..60cb5810446 100644
--- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
+++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
@@ -891,7 +891,7 @@ void SelectionDAGLowering::visitSwitch(SwitchInst &I) {
// FIXME: Make this work with 64 bit targets someday, possibly by always
// doing differences there so that entries stay 32 bits.
// FIXME: Make this work with PIC code
- if (TLI.isOperationLegal(ISD::BRIND, TLI.getPointerTy()) &&
+ if (0 && TLI.isOperationLegal(ISD::BRIND, TLI.getPointerTy()) &&
TLI.getPointerTy() == MVT::i32 &&
(Relocs == Reloc::Static || Relocs == Reloc::DynamicNoPIC) &&
Cases.size() > 3) {
OpenPOWER on IntegriCloud