mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-19 19:20:23 +02:00
* check/add.tst, check/allocai.tst, check/bp.tst, check/divi.tst, check/fib.tst, check/lightning.c, include/lightning/jit_arm.h, include/lightning/jit_mips.h, include/lightning/jit_ppc.h, include/lightning/jit_private.h, include/lightning/jit_x86.h: Make JIT_RET, JIT_FRET and JIT_SP private. These should not be used in any operations due to frequently having special constraints (usually JIT_FRET). JIT_FP must be made available because it must be used as the base register to access stack space allocated with jit_allocai.
8 lines
358 B
Text
8 lines
358 B
Text
* Remove JIT_RET and JIT_FRET. Only interface to these should
|
|
be jit_retval, jit_retval_f and jit_retval_d, otherwise one
|
|
may use JIT_RET and/or JIT_FRET as argument to other jit calls,
|
|
what may cause problems at least on the arm backend.
|
|
|
|
* Update documentation to match new implementation.
|
|
|
|
* Make an sparc port to not remove previous functionality.
|