1
Fork 0
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:
Andy Wingo 2015-10-28 17:47:48 +00:00
parent e3cc0eeb3a
commit fc87033bf0
2 changed files with 4 additions and 2 deletions

View file

@ -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;