Bug 1020359 - IonMonkey MIPS: Add missing or32. r=nbp

This commit is contained in:
Branislav Rankov 2014-06-30 16:28:17 +02:00
parent c3991b34ec
commit 3793c3a90a
2 changed files with 8 additions and 0 deletions

View File

@ -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)
{

View File

@ -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);