diff options
author | Andy Wingo <wingo@pobox.com> | 2019-05-23 09:34:08 +0200 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2019-05-23 09:34:08 +0200 |
commit | e9e52b6ab96622dd1f0958ba8bcaab23bf98eb47 (patch) | |
tree | b805ddf23483bf1c9f4a5ce9f2ca34a300661a88 /libguile/jit.c | |
parent | be8ac3589e2a420fa927a3bf429e7a1e91590e64 (diff) | |
download | guile-e9e52b6ab96622dd1f0958ba8bcaab23bf98eb47.tar.gz |
Mark a couple functions as maybe-unused.
* libguile/jit.c (fp_scm_operand, sp_slot_operand): Maybe unused.
Diffstat (limited to 'libguile/jit.c')
-rw-r--r-- | libguile/jit.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libguile/jit.c b/libguile/jit.c index d13a682b8..41b1272b7 100644 --- a/libguile/jit.c +++ b/libguile/jit.c @@ -861,6 +861,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) { ASSERT_HAS_REGISTER_STATE (FP_IN_REGISTER); @@ -887,6 +889,8 @@ emit_fp_set_scm (scm_jit_state *j, uint32_t slot, jit_gpr_t val) } 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) { ASSERT_HAS_REGISTER_STATE (SP_IN_REGISTER); |