mirror of
https://github.com/izzy2lost/xenia-edge.git
synced 2026-07-06 00:20:26 -07:00
[a64] Fix 32-bit store
You wouldn't believe how much time this bug costed me
This commit is contained in:
+2
-2
@@ -717,9 +717,9 @@ struct STORE_OFFSET_I32
|
||||
} else {
|
||||
if (i.src3.is_constant) {
|
||||
e.MOV(W0, i.src3.constant());
|
||||
e.STRH(W0, addr_reg);
|
||||
e.STR(W0, addr_reg);
|
||||
} else {
|
||||
e.STRH(i.src3, addr_reg);
|
||||
e.STR(i.src3, addr_reg);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user