Simplify gcloop.c's tospace_open.
authorTaylor R Campbell <campbell@mumble.net>
Thu, 5 Nov 2009 03:39:38 +0000 (22:39 -0500)
committerTaylor 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

index d402fe45134d60036988b0c602d443964a4d7d67..1791986f77a470a51d26128f57f14883b48ce51f 100644 (file)
@@ -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