1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 19:42:54 +02:00

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 a283acb406
commit 6e71d21892

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;