Skip to content

Commit ff34f05

Browse files
author
git apple-llvm automerger
committed
Merge commit 'b8dc54cf39b4' from llvm.org/master into apple/master
2 parents 88eed3e + b8dc54c commit ff34f05

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3872,10 +3872,10 @@ static PPC::Predicate getPredicateForSetCC(ISD::CondCode CC, const EVT &VT,
38723872
return UseSPE ? PPC::PRED_GT : PPC::PRED_LT;
38733873
case ISD::SETULE:
38743874
case ISD::SETLE:
3875-
return UseSPE ? PPC::PRED_LE : PPC::PRED_LE;
3875+
return PPC::PRED_LE;
38763876
case ISD::SETOGT:
38773877
case ISD::SETGT:
3878-
return UseSPE ? PPC::PRED_GT : PPC::PRED_GT;
3878+
return PPC::PRED_GT;
38793879
case ISD::SETUGE:
38803880
case ISD::SETGE:
38813881
return UseSPE ? PPC::PRED_LE : PPC::PRED_GE;

0 commit comments

Comments
 (0)