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

Idiotic error in last fix.

llvm-svn: 1306
This commit is contained in:
Vikram S. Adve 2001-11-14 17:55:02 +00:00
parent e3c0a06ef9
commit 9ed66f8e94

View File

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