Delete a redundant 'else'.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@72009 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Dan Gohman 2009-05-18 16:17:44 +00:00
parent 8ea94524ed
commit 0bac95e2e2

View File

@ -2201,7 +2201,7 @@ SCEVHandle ScalarEvolution::createSCEV(Value *V) {
getSCEV(U->getOperand(1)));
// If the RHS of xor is -1, then this is a not operation.
else if (CI->isAllOnesValue())
if (CI->isAllOnesValue())
return getNotSCEV(getSCEV(U->getOperand(0)));
}
break;