diff options
author | Chris Lattner <sabre@nondot.org> | 2006-05-25 16:54:16 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-05-25 16:54:16 +0000 |
commit | 5d634ce466173f6fde49470fad125eb09532caeb (patch) | |
tree | 094ccaea25ab4ccdc91a26f79fb28c90fc42da5f /lib/Target | |
parent | 2f99b6bd9601ae8d4fd248f9bb701283795c38a8 (diff) |
Fix Benchmarks/MallocBench/cfrac
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28471 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target')
-rw-r--r-- | lib/Target/PowerPC/PPCISelDAGToDAG.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/Target/PowerPC/PPCISelDAGToDAG.cpp b/lib/Target/PowerPC/PPCISelDAGToDAG.cpp index 071e844ac5..d5a179cc5f 100644 --- a/lib/Target/PowerPC/PPCISelDAGToDAG.cpp +++ b/lib/Target/PowerPC/PPCISelDAGToDAG.cpp @@ -714,8 +714,10 @@ static unsigned getBCCForSetCC(ISD::CondCode CC) { switch (CC) { default: assert(0 && "Unknown condition!"); abort(); case ISD::SETOEQ: // FIXME: This is incorrect see PR642. + case ISD::SETUEQ: case ISD::SETEQ: return PPC::BEQ; case ISD::SETONE: // FIXME: This is incorrect see PR642. + case ISD::SETUNE: case ISD::SETNE: return PPC::BNE; case ISD::SETOLT: // FIXME: This is incorrect see PR642. case ISD::SETULT: |