mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-29 16:30:19 +02:00
Return a function pointer from jit_address
This will allow supporting ARM code on armv7 without having to change any users of Lightening.
This commit is contained in:
parent
ba24ce465f
commit
8045386a45
1 changed files with 1 additions and 1 deletions
|
@ -171,7 +171,7 @@ jit_pointer_t
|
|||
jit_address(jit_state_t *_jit)
|
||||
{
|
||||
ASSERT (_jit->start);
|
||||
return _jit->pc.uc;
|
||||
return jit_address_to_function_pointer (_jit->pc.uc);
|
||||
}
|
||||
|
||||
void
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue