From d9a39924ae7154c0122c901f5ad5c453938fab44 Mon Sep 17 00:00:00 2001 From: Taylor R Campbell Date: Wed, 4 Nov 2009 22:39:38 -0500 Subject: [PATCH] Simplify gcloop.c's tospace_open. 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 | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/microcode/gcloop.c b/src/microcode/gcloop.c index d402fe451..1791986f7 100644 --- 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 -- 2.25.1