Delete a redundant 'else'.

llvm-svn: 72009
This commit is contained in:
Dan Gohman 2009-05-18 16:17:44 +00:00
parent 9cf09f8291
commit d277a1ed49
1 changed files with 1 additions and 1 deletions

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;