]> git.sur5r.net Git - cc65/commitdiff
Updated switch statement comments.
authorChris Cacciatore <chris.cacciatore@gmail.com>
Sat, 20 Aug 2016 03:21:10 +0000 (20:21 -0700)
committerChris Cacciatore <chris.cacciatore@gmail.com>
Sat, 20 Aug 2016 03:21:10 +0000 (20:21 -0700)
* Now comments represent the fact that there may not be curly braces.

src/cc65/swstmt.c
test/val/switch2.c

index f71c3e40ac18a254026c858f9cd4eb41fecddc0c..e995bd0b7066b03923d89690a15ec5eee19aab33 100644 (file)
@@ -144,8 +144,8 @@ void SwitchStatement (void)
     /* Create a loop so we may use break. */
     AddLoop (ExitLabel, 0);
 
-    /* Parse the following statement, which will actually be a compound
-    ** statement because of the curly brace at the current input position
+    /* Parse the following statement, which may actually be a compound
+    ** statement if there is a curly brace at the current input position
     */
     HaveBreak = Statement (&RCurlyBrace);
 
index 00206b0f6fa42ad2f1e921ecced9fd3be3f3b49c..65c24eeda8b958f3c2996011b8d97b5dab8a6ad3 100644 (file)
@@ -22,7 +22,7 @@ void switch_no_body(void)
 
 void switch_empty_body(void)
 {
-  switch(0) {};
+  switch(0) {}
 }
 
 /* only worried about this file compiling successfully */