Changes between Version 73 and Version 74 of IR2
- Timestamp:
- 05/05/21 10:04:10 (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
IR2
v73 v74 44 44 program: typedef* decl* function-definition+ ; 45 45 typedef: 46 struct ID '{' decl* '}' ';' 47 | union ID '{' decl* '}' ';' 48 | type-param-list? 'typedef' type-specifier declarator ';' 46 type-param-list? 47 ( struct ID '{' decl* '}' 48 | union ID '{' decl* '}' 49 | 'typedef' type-specifier declarator 50 ) 51 ';' 49 52 ; 50 53 decl: type-param-list? qualifier* type-specifier declarator contract-clause* ';' ;
