mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1020359 - IonMonkey MIPS: Add missing or32. r=nbp
This commit is contained in:
parent
c3991b34ec
commit
3793c3a90a
@ -1709,6 +1709,13 @@ MacroAssemblerMIPSCompat::and32(const Address &src, Register dest)
|
||||
ma_and(dest, SecondScratchReg);
|
||||
}
|
||||
|
||||
void
|
||||
MacroAssemblerMIPSCompat::or32(Imm32 imm, Register dest)
|
||||
{
|
||||
ma_or(dest, imm);
|
||||
}
|
||||
|
||||
|
||||
void
|
||||
MacroAssemblerMIPSCompat::or32(Imm32 imm, const Address &dest)
|
||||
{
|
||||
|
@ -1020,6 +1020,7 @@ public:
|
||||
void and32(Imm32 imm, Register dest);
|
||||
void and32(Imm32 imm, const Address &dest);
|
||||
void and32(const Address &src, Register dest);
|
||||
void or32(Imm32 imm, Register dest);
|
||||
void or32(Imm32 imm, const Address &dest);
|
||||
void xor32(Imm32 imm, Register dest);
|
||||
void xorPtr(Imm32 imm, Register dest);
|
||||
|
Loading…
Reference in New Issue
Block a user