mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-04 10:30:01 +00:00
Add support for GCC 2.96
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3777 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
c2b327768b
commit
82f05d8610
@ -472,8 +472,8 @@ FixConstantOperandsForInstr(Instruction* vmInstr,
|
||||
{
|
||||
constantThatMustBeLoaded = true;
|
||||
opValue = isSigned
|
||||
? ConstantSInt::get(Type::LongTy, immedValue)
|
||||
: ConstantUInt::get(Type::ULongTy, (uint64_t) immedValue);
|
||||
? (Value*)ConstantSInt::get(Type::LongTy, immedValue)
|
||||
: (Value*)ConstantUInt::get(Type::ULongTy,(uint64_t)immedValue);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -472,8 +472,8 @@ FixConstantOperandsForInstr(Instruction* vmInstr,
|
||||
{
|
||||
constantThatMustBeLoaded = true;
|
||||
opValue = isSigned
|
||||
? ConstantSInt::get(Type::LongTy, immedValue)
|
||||
: ConstantUInt::get(Type::ULongTy, (uint64_t) immedValue);
|
||||
? (Value*)ConstantSInt::get(Type::LongTy, immedValue)
|
||||
: (Value*)ConstantUInt::get(Type::ULongTy,(uint64_t)immedValue);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user