Idiotic error in last fix.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1306 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Vikram S. Adve 2001-11-14 17:55:02 +00:00
parent c811745156
commit 9e29f78029
2 changed files with 2 additions and 2 deletions

View File

@ -257,7 +257,7 @@ ChooseRegOrImmed(Value* val,
{
intValue = 0;
}
if (CPV->getType()->isSigned())
else if (CPV->getType()->isSigned())
{
intValue = ((ConstPoolSInt*)CPV)->getValue();
}

View File

@ -257,7 +257,7 @@ ChooseRegOrImmed(Value* val,
{
intValue = 0;
}
if (CPV->getType()->isSigned())
else if (CPV->getType()->isSigned())
{
intValue = ((ConstPoolSInt*)CPV)->getValue();
}