mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-20 18:50:21 +02:00
Correct extra regressions found by the call.tst test case.
* lib/jit_arm.c, lib/jit_mips-cpu.c, lib/jit_mips.c: Correct regressions when patching jit_calli for a forward function. * lib/jit_ppc-cpu.c: Correct wrong arguments to ANDI opcode in jit_getarg_u{c,s} implementation.
This commit is contained in:
parent
3ee09ecc64
commit
1287a2d448
5 changed files with 40 additions and 30 deletions
|
@ -362,9 +362,9 @@ static jit_word_t _movi_p(jit_state_t*,jit_int32_t,jit_word_t);
|
|||
# define negr(r0,r1) NEG(r0,r1)
|
||||
# define comr(r0,r1) NOT(r0,r1)
|
||||
# define extr_c(r0,r1) EXTSB(r0,r1)
|
||||
# define extr_uc(r0,r1) ANDI_(r0,r0,0xff)
|
||||
# define extr_uc(r0,r1) ANDI_(r0,r1,0xff)
|
||||
# define extr_s(r0,r1) EXTSH(r0,r1)
|
||||
# define extr_us(r0,r1) ANDI_(r0,r0,0xffff)
|
||||
# define extr_us(r0,r1) ANDI_(r0,r1,0xffff)
|
||||
# if __BYTE_ORDER == __BIG_ENDIAN
|
||||
# define htonr(r0,r1) movr(r0,r1)
|
||||
# else
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue