aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/Target/PowerPC/PPCISelDAGToDAG.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Target/PowerPC/PPCISelDAGToDAG.cpp b/lib/Target/PowerPC/PPCISelDAGToDAG.cpp
index 99cd5e7cc6..2bfaa2d72e 100644
--- a/lib/Target/PowerPC/PPCISelDAGToDAG.cpp
+++ b/lib/Target/PowerPC/PPCISelDAGToDAG.cpp
@@ -822,8 +822,8 @@ static unsigned getBCCForSetCC(ISD::CondCode CC) {
case ISD::SETUGE:
case ISD::SETGE: return PPC::BGE;
- case ISD::SETO: return PPC::BUN;
- case ISD::SETUO: return PPC::BNU;
+ case ISD::SETO: return PPC::BNU;
+ case ISD::SETUO: return PPC::BUN;
}
return 0;
}