From: simonmar Date: Tue, 16 Jan 2001 11:59:06 +0000 (+0000) Subject: [project @ 2001-01-16 11:59:06 by simonmar] X-Git-Tag: Approximately_9120_patches~2892 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=1317cc2aeb0b7da73150fdee04df4386cc19ff7c;p=ghc-hetmet.git [project @ 2001-01-16 11:59:06 by simonmar] this isn't legal C, apparently: switch (e) { label: } without at least one statement between the label and the end block. --- diff --git a/ghc/rts/Schedule.c b/ghc/rts/Schedule.c index d8491ae..4528180 100644 --- a/ghc/rts/Schedule.c +++ b/ghc/rts/Schedule.c @@ -1,5 +1,5 @@ /* --------------------------------------------------------------------------- - * $Id: Schedule.c,v 1.85 2000/12/19 16:38:15 sewardj Exp $ + * $Id: Schedule.c,v 1.86 2001/01/16 11:59:06 simonmar Exp $ * * (c) The GHC Team, 1998-2000 * @@ -3016,7 +3016,7 @@ detectBlackHoles( void ) break; } - done: + done: ; } }