Changeset 51fbba5
- Timestamp:
- Aug 27, 2022, 1:18:11 PM (2 years ago)
- Branches:
- ADT, ast-experimental, master, pthread-emulation
- Children:
- aa122e9
- Parents:
- f6a4917
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Parser/parser.yy
rf6a4917 r51fbba5 10 10 // Created On : Sat Sep 1 20:22:55 2001 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Mon Aug 22 23:05:55202213 // Update Count : 565 112 // Last Modified On : Sat Aug 27 13:18:01 2022 13 // Update Count : 5659 14 14 // 15 15 … … 1324 1324 | declaration comma_expression_opt ';' comma_expression_opt // C99, declaration has ';' 1325 1325 { $$ = new ForCtrl( $1, $2, $4 ); } 1326 1327 | '@' ';' comma_expression // CFA, empty loop index 1328 { $$ = new ForCtrl( (ExpressionNode *)nullptr, $3, nullptr ); } 1329 | '@' ';' comma_expression ';' comma_expressiondiff // CFA, empty loop index 1330 { $$ = new ForCtrl( (ExpressionNode *)nullptr, $3, $5 ); } 1326 1331 1327 1332 | comma_expression // CFA
Note: See TracChangeset
for help on using the changeset viewer.