diff mbox

[gccgo] Better error message for missing statement after label

Message ID mcrlj7maxns.fsf@google.com
State New
Headers show

Commit Message

Ian Lance Taylor Sept. 1, 2010, 4:35 a.m. UTC
This patch improves gccgo's error message and subsequent processing when
a statement is missing after a label.  Committed to gccgo branch.

Ian
diff mbox

Patch

diff -r 5052eefabc12 go/parse.cc
--- a/go/parse.cc	Tue Aug 31 20:07:09 2010 -0700
+++ b/go/parse.cc	Tue Aug 31 21:34:26 2010 -0700
@@ -3072,6 +3072,14 @@ 
       return;
     }
 
+  if (!this->statement_may_start_here())
+    {
+      error_at(location, "missing statement after label");
+      this->unget_token(Token::make_operator_token(OPERATOR_SEMICOLON,
+						   location));
+      return;
+    }
+
   this->statement(label);
 }