unofficial mirror of guile-devel@gnu.org 
 help / color / mirror / Atom feed
From: Rob Browning <rlb@defaultvalue.org>
Subject: guile 1.6 appears fixed on ia64, powerpc, alpha, and sparc.
Date: Sat, 12 Apr 2003 12:48:21 -0500	[thread overview]
Message-ID: <87adevvc7u.fsf@raven.i.defaultvalue.org> (raw)


I've tested my recent fixes on each, and "make check" seems fine now.
I'll release 1.6.4 after I finish committing some of my own fixes and
after I hear back about some pending patches.

For those interested, the arch fixes were mostly of the

  while (!SCM_NULLP (t.arg1 = SCM_CDR (t.arg1))) { ... }

only works when changed to

  t.arg1 = SCM_CDR (t.arg1);  
  while (!SCM_NULLP (t.arg1)) { ... t.arg1 = SCM_CDR (t.arg1); }
  
variety, but there was also a sparc bug where we only tested in
__scm.h for #ifdef sparc, but judging from gc_os_dep.c, we needed to
be doing this:

  #if defined (sparc) || defined (__sparc__) || defined (__sparc)
  # define SCM_FLUSH_REGISTER_WINDOWS asm("ta 3")
  #else
  # define SCM_FLUSH_REGISTER_WINDOWS /* empty */
  #endif

-- 
Rob Browning
rlb @defaultvalue.org, @linuxdevel.com, and @debian.org
Previously @cs.utexas.edu
GPG starting 2002-11-03 = 14DD 432F AE39 534D B592  F9A0 25C8 D377 8C7E 73A4


_______________________________________________
Guile-devel mailing list
Guile-devel@gnu.org
http://mail.gnu.org/mailman/listinfo/guile-devel


                 reply	other threads:[~2003-04-12 17:48 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.gnu.org/software/guile/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87adevvc7u.fsf@raven.i.defaultvalue.org \
    --to=rlb@defaultvalue.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).