Bug 604335 Do not use asm_nongp_copy for moving between FpRegs and GpRegs on SPARC r=edwsmith

--HG--
extra : convert_revision : 004571303a080d8915b9845190b33338e495bcba
This commit is contained in:
Ginn Chen 2010-10-18 19:47:12 +08:00
parent e280d4b539
commit a2f1826354

View File

@ -519,7 +519,7 @@ namespace nanojit
evict(ins);
r = registerAlloc(ins, allow, hint(ins));
} else
#elif defined(NANOJIT_PPC) || defined(NANOJIT_MIPS)
#elif defined(NANOJIT_PPC) || defined(NANOJIT_MIPS) || defined(NANOJIT_SPARC)
if (((rmask(r)&GpRegs) && !(allow&GpRegs)) ||
((rmask(r)&FpRegs) && !(allow&FpRegs)))
{