mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-04 10:30:01 +00:00
Mark tADDrSPi as having side effects again.
It really doesn't, but when r141929 removed the hasSideEffects flag from this instruction, it caused miscompilations. I am guessing that it got moved across a stack pointer update. Also clear isRematerializable after checking that this instruction is in fact never rematerialized in the nightly test suite. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142030 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
ba087df982
commit
534849687c
@ -310,9 +310,9 @@ def tPICADD : TIt<(outs GPR:$dst), (ins GPR:$lhs, pclabel:$cp), IIC_iALUr, "",
|
||||
}
|
||||
|
||||
// ADD <Rd>, sp, #<imm8>
|
||||
// This is rematerializable, which is particularly useful for taking the
|
||||
// address of locals.
|
||||
let isReMaterializable = 1, neverHasSideEffects = 1 in
|
||||
// FIXME: This should not be marked as having side effects, and it should be
|
||||
// rematerializable. Clearing the side effect bit causes miscompilations,
|
||||
// probably because the instruction can be moved around.
|
||||
def tADDrSPi : T1pI<(outs tGPR:$dst), (ins GPRsp:$sp, t_imm0_1020s4:$imm),
|
||||
IIC_iALUi, "add", "\t$dst, $sp, $imm", []>,
|
||||
T1Encoding<{1,0,1,0,1,?}> {
|
||||
|
Loading…
x
Reference in New Issue
Block a user