Changes between Version 73 and Version 74 of IR2


Ignore:
Timestamp:
05/05/21 10:04:10 (5 years ago)
Author:
siegel
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • IR2

    v73 v74  
    4444program: typedef* decl* function-definition+ ;
    4545typedef:
    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  ';'
    4952  ;
    5053decl: type-param-list? qualifier* type-specifier declarator contract-clause* ';' ;