[a64] Fix 32-bit store

You wouldn't believe how much time this bug costed me
This commit is contained in:
Wunkolo
2024-06-23 14:00:24 -07:00
parent ea86ac3ce1
commit 871adfb768
+2 -2
View File
@@ -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);
}
}
}