projects
/
mit-scheme.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b42c51e
)
Simplify gcloop.c's tospace_open.
author
Taylor R Campbell
<campbell@mumble.net>
Thu, 5 Nov 2009 03:39:38 +0000
(22:39 -0500)
committer
Taylor R Campbell
<campbell@mumble.net>
Thu, 5 Nov 2009 03:39:38 +0000
(22:39 -0500)
This need not have a conditional; it is called only when the
condition is true, to report the error. This may not have been the
source, but Gerry observed GCC stumble into an internal compiler
error while compiling this procedure!
src/microcode/gcloop.c
patch
|
blob
|
history
diff --git
a/src/microcode/gcloop.c
b/src/microcode/gcloop.c
index d402fe45134d60036988b0c602d443964a4d7d67..1791986f77a470a51d26128f57f14883b48ce51f 100644
(file)
--- a/
src/microcode/gcloop.c
+++ b/
src/microcode/gcloop.c
@@
-876,8
+876,7
@@
tospace_closed (void)
static void
tospace_open (void)
{
- if (tospace_next != 0)
- std_gc_death ("tospace is open, should be closed");
+ std_gc_death ("tospace is open, should be closed");
}
void