Index: src/Parser/parser.yy
===================================================================
--- src/Parser/parser.yy	(revision eb46fdff930448aa318502e397b5bf1e395225d7)
+++ src/Parser/parser.yy	(revision 332bd3303d25cdb1960e2fe79243496df86ebe8b)
@@ -10,6 +10,6 @@
 // Created On       : Sat Sep  1 20:22:55 2001
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Tue Dec 10 23:07:17 2019
-// Update Count     : 4400
+// Last Modified On : Thu Dec 12 17:42:08 2019
+// Update Count     : 4401
 //
 
@@ -1197,4 +1197,7 @@
 		{ $$ = forCtrl( $3, $1, new ExpressionNode( build_constantInteger( *new string( "0" ) ) ),
 						OperKinds::LThan, $3->clone(), new ExpressionNode( build_constantInteger( *new string( "1" ) ) ) ); }
+	| comma_expression ';' '=' comma_expression				// CFA
+		{ $$ = forCtrl( $4, $1, new ExpressionNode( build_constantInteger( *new string( "0" ) ) ),
+						OperKinds::LEThan, $4->clone(), new ExpressionNode( build_constantInteger( *new string( "1" ) ) ) ); }
 	| comma_expression ';' comma_expression inclexcl comma_expression // CFA
 		{ $$ = forCtrl( $3, $1, $3->clone(), $4, $5, new ExpressionNode( build_constantInteger( *new string( "1" ) ) ) ); }
