1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 19:52:54 +01:00

Unbreak the build.

llvm-svn: 51217
This commit is contained in:
Nick Lewycky 2008-05-17 09:05:22 +00:00
parent 1df40102a9
commit baa90d4eef

View File

@ -1036,7 +1036,7 @@ static ICmpInst::Predicate evaluateICmpRelation(const Constant *V1,
if (CE1->getOpcode() == CE2->getOpcode()) {
Constant *Op1 = const_cast<Constant*>(CE1Op0);
Constant *Op2 = CE2->getOperand(0);
if (CE1Op->getType() == CE2Op->getType()) {
if (Op1->getType() == Op2->getType()) {
ConstantInt *R = 0;
ICmpInst::Predicate pred = ICmpInst::ICMP_EQ;