1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 11:40:18 +02:00

* __scm.h (SCM_FLUSH_REGISTER_WINDOWS): don't just rely on "sparc"

test.  Instead use
#if defined (sparc) || defined (__sparc__) || defined (__sparc)
as gc_os_dep.c suggests is appropriate.
This commit is contained in:
Rob Browning 2003-04-13 17:46:09 +00:00
parent 21ab2aeb77
commit 7c12f0ac3d

View file

@ -337,7 +337,7 @@
* that all the state of the process is contained in the stack.
*/
#ifdef sparc
#if defined (sparc) || defined (__sparc__) || defined (__sparc)
# define SCM_FLUSH_REGISTER_WINDOWS asm("ta 3")
#else
# define SCM_FLUSH_REGISTER_WINDOWS /* empty */