mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-08 06:32:24 +00:00
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:
parent
c811745156
commit
9e29f78029
@ -257,7 +257,7 @@ ChooseRegOrImmed(Value* val,
|
||||
{
|
||||
intValue = 0;
|
||||
}
|
||||
if (CPV->getType()->isSigned())
|
||||
else if (CPV->getType()->isSigned())
|
||||
{
|
||||
intValue = ((ConstPoolSInt*)CPV)->getValue();
|
||||
}
|
||||
|
@ -257,7 +257,7 @@ ChooseRegOrImmed(Value* val,
|
||||
{
|
||||
intValue = 0;
|
||||
}
|
||||
if (CPV->getType()->isSigned())
|
||||
else if (CPV->getType()->isSigned())
|
||||
{
|
||||
intValue = ((ConstPoolSInt*)CPV)->getValue();
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user