]> git.sur5r.net Git - cc65/commitdiff
Removed check for LCURLY in switch statements.
authorChris Cacciatore <chris.cacciatore@gmail.com>
Mon, 15 Aug 2016 02:55:03 +0000 (19:55 -0700)
committerChris Cacciatore <chris.cacciatore@gmail.com>
Mon, 15 Aug 2016 18:03:02 +0000 (11:03 -0700)
src/cc65/swstmt.c

index 0aefc051c760165f001185b220528d222e0c56e8..f71c3e40ac18a254026c858f9cd4eb41fecddc0c 100644 (file)
@@ -144,11 +144,6 @@ void SwitchStatement (void)
     /* Create a loop so we may use break. */
     AddLoop (ExitLabel, 0);
 
-    /* Make sure a curly brace follows */
-    if (CurTok.Tok != TOK_LCURLY) {
-        Error ("`{' expected");
-    }
-
     /* Parse the following statement, which will actually be a compound
     ** statement because of the curly brace at the current input position
     */