disable shift/and lowering to work around PR1325 for now.

llvm-svn: 35985
This commit is contained in:
Chris Lattner 2007-04-14 02:26:56 +00:00
parent 49fa8d2bff
commit 7196f09edc
1 changed files with 3 additions and 1 deletions

View File

@ -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;