mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Add in a new macro-assembler function in the ARM backend (no bug, r=red)
This commit is contained in:
parent
2b1847356b
commit
280b2fd3b8
@ -416,6 +416,10 @@ class MacroAssemblerARMCompat : public MacroAssemblerARM
|
||||
void mov(Imm32 imm, Register dest) {
|
||||
ma_mov(imm, dest);
|
||||
}
|
||||
void mov(ImmWord imm, Register dest) {
|
||||
ma_mov(Imm32(imm.value), dest);
|
||||
}
|
||||
|
||||
void mov(Register src, Address dest) {
|
||||
JS_NOT_REACHED("NYI-IC");
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user