From: Chris Lattner Date: Sat, 14 Apr 2007 02:26:56 +0000 (+0000) Subject: disable shift/and lowering to work around PR1325 for now. X-Git-Url: http://plrg.eecs.uci.edu/git/?p=oota-llvm.git;a=commitdiff_plain;h=3ff981749bed4347dfe7196ac066be1d4f51ea1f disable shift/and lowering to work around PR1325 for now. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35985 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp b/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp index 97f083634d6..8a9efadd5b4 100644 --- a/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp +++ b/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp @@ -1677,7 +1677,9 @@ bool SelectionDAGLowering::handleBTSplitSwitchCase(CaseRec& CR, bool SelectionDAGLowering::handleBitTestsSwitchCase(CaseRec& CR, CaseRecVector& WorkList, Value* SV, - MachineBasicBlock* Default) { + MachineBasicBlock* Default){ + return false; // DISABLED FOR NOW: PR1325. + unsigned IntPtrBits = getSizeInBits(TLI.getPointerTy()); Case& FrontCase = *CR.Range.first;