mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-04-30 03:40:34 +02:00
Stack slots can hold a double
* libguile/frames.h (union scm_vm_stack_element): Add double member. * libguile/frames.c (scm_frame_local_ref, scm_frame_local_set_x): Wire up f64 support.
This commit is contained in:
parent
e3cc0eeb3a
commit
fc87033bf0
2 changed files with 4 additions and 2 deletions
|
@ -91,6 +91,7 @@ union scm_vm_stack_element
|
|||
scm_t_uintptr as_uint;
|
||||
scm_t_uint32 *as_ip;
|
||||
SCM as_scm;
|
||||
double as_f64;
|
||||
|
||||
/* For GC purposes. */
|
||||
void *as_ptr;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue