mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-09 21:40:33 +02:00
Mark a couple functions as maybe-unused.
* libguile/jit.c (fp_scm_operand, sp_slot_operand): Maybe unused.
This commit is contained in:
parent
be8ac3589e
commit
e9e52b6ab9
1 changed files with 4 additions and 0 deletions
|
@ -860,6 +860,8 @@ emit_direct_tail_call (scm_jit_state *j, const uint32_t *vcode)
|
|||
}
|
||||
}
|
||||
|
||||
static jit_operand_t
|
||||
fp_scm_operand (scm_jit_state *j, uint32_t slot) SCM_UNUSED;
|
||||
static jit_operand_t
|
||||
fp_scm_operand (scm_jit_state *j, uint32_t slot)
|
||||
{
|
||||
|
@ -886,6 +888,8 @@ emit_fp_set_scm (scm_jit_state *j, uint32_t slot, jit_gpr_t val)
|
|||
clear_register_state (j, SP_CACHE_GPR);
|
||||
}
|
||||
|
||||
static jit_operand_t
|
||||
sp_slot_operand (scm_jit_state *j, uint32_t slot) SCM_UNUSED;
|
||||
static jit_operand_t
|
||||
sp_slot_operand (scm_jit_state *j, uint32_t slot)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue