shithub: scc

Download patch

ref: bada193b9bd2f13dd7788b2664f000e7f4e75258
parent: c97ecd8ee6431a55b0d6413bc8f5068ba1b4f197
author: Roberto E. Vargas Caballero <[email protected]>
date: Fri Oct 25 14:44:11 EDT 2013

Remove unneeded continue

These continues are not needed.

--- a/decl.c
+++ b/decl.c
@@ -40,7 +40,6 @@
 				; /* TODO: k&r function */
 			else
 				/* TODO: prototyped function */;
-			continue;
 		} else if (accept('[')) {
 			unsigned len;
 
@@ -53,7 +52,6 @@
 			}
 			pushtype(len);
 			pushtype(ARY);
-			continue;
 		} else {
 			return;
 		}