Fix Benchmarks/MallocBench/cfrac

llvm-svn: 28471
This commit is contained in:
Chris Lattner 2006-05-25 16:54:16 +00:00
parent 91df1ef41f
commit 630bbcef8d
1 changed files with 2 additions and 0 deletions

View File

@ -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: