Fix Regression/CodeGen/PowerPC/2006-01-18-InvalidBranchOpcodeAssert.ll

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25421 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2006-01-18 19:35:21 +00:00
parent 97f8f8d8f2
commit e44b2d16ee

View File

@ -52,6 +52,8 @@ public:
case PPC::BGE: return PPC::BLT;
case PPC::BGT: return PPC::BLE;
case PPC::BLE: return PPC::BGT;
case PPC::BNU: return PPC::BUN;
case PPC::BUN: return PPC::BNU;
}
}
};