forked from OSchip/llvm-project
disable shift/and lowering to work around PR1325 for now.
llvm-svn: 35985
This commit is contained in:
parent
49fa8d2bff
commit
7196f09edc
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue