mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-06 09:44:39 +00:00
[mips] Disallow moving load/store instructions past volatile instructions.
Unfortunately, I wasn't able to create a test case that demonstrates the problem I was trying to fix with this patch. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@175226 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
cd7319dc5f
commit
d977aacf99
@ -208,7 +208,7 @@ bool Filler::delayHasHazard(const MachineInstr &Candidate, bool &SawLoad,
|
||||
|
||||
// Loads or stores cannot be moved past a store to the delay slot
|
||||
// and stores cannot be moved past a load.
|
||||
if (Candidate.mayStore()) {
|
||||
if (Candidate.mayStore() || Candidate.hasOrderedMemoryRef()) {
|
||||
HasHazard |= SawStore | SawLoad;
|
||||
SawStore = true;
|
||||
} else if (Candidate.mayLoad()) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user