mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-28 21:34:23 +00:00
Use a function in MathExtras to do sign extension.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@151107 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
c76ad82140
commit
5990bd7ba6
@ -90,7 +90,7 @@ void MipsAnalyzeImmediate::ReplaceADDiuSLLWithLUi(InstSeq &Seq) {
|
||||
return;
|
||||
|
||||
// Sign-extend and shift operand of ADDiu and see if it still fits in 16-bit.
|
||||
int64_t Imm = (((int64_t)Seq[0].ImmOpnd) << 48) >> 48;
|
||||
int64_t Imm = SignExtend64<16>(Seq[0].ImmOpnd);
|
||||
int64_t ShiftedImm = Imm << (Seq[1].ImmOpnd - 16);
|
||||
|
||||
if (!isInt<16>(ShiftedImm))
|
||||
|
Loading…
x
Reference in New Issue
Block a user