diff --git a/lib/Target/Alpha/AlphaISelPattern.cpp b/lib/Target/Alpha/AlphaISelPattern.cpp index 6f093ba65f8..6e74a79dc3d 100644 --- a/lib/Target/Alpha/AlphaISelPattern.cpp +++ b/lib/Target/Alpha/AlphaISelPattern.cpp @@ -1591,7 +1591,7 @@ unsigned ISel::SelectExpr(SDOperand N) { //Int SetCC -> Select //Dropping the CC is only useful if we are comparing to 0 if(SetCC->getOperand(1).getOpcode() == ISD::Constant && - cast(SetCC->getOperand(0))->getValue() == 0) + cast(SetCC->getOperand(1))->getValue() == 0) { bool useI = (SetCC->getOperand(1).getOpcode() == ISD::Constant && cast(SetCC->getOperand(1))->getValue() <= 255); @@ -1617,8 +1617,8 @@ unsigned ISel::SelectExpr(SDOperand N) { .addReg(SelectExpr(SetCC->getOperand(1))); return Result; } - if(SetCC->getOperand(1).getOpcode() == ISD::Constant && - cast(SetCC->getOperand(1))->getValue() == 0) + if(SetCC->getOperand(0).getOpcode() == ISD::Constant && + cast(SetCC->getOperand(0))->getValue() == 0) { bool useI = (SetCC->getOperand(0).getOpcode() == ISD::Constant && cast(SetCC->getOperand(0))->getValue() <= 255);