Changes in src/Parser/parser.yy [ecae5860:b47b827]
- File:
-
- 1 edited
-
src/Parser/parser.yy (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/Parser/parser.yy
recae5860 rb47b827 10 10 // Created On : Sat Sep 1 20:22:55 2001 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Fri Jun 1 17:59:57201813 // Update Count : 34 7612 // Last Modified On : Sat Jun 2 17:18:40 2018 13 // Update Count : 3487 14 14 // 15 15 … … 1331 1331 c_declaration ';' 1332 1332 | cfa_declaration ';' // CFA 1333 | static_assert 1333 | static_assert // C11 1334 1334 ; 1335 1335 … … 1337 1337 STATICASSERT '(' constant_expression ',' string_literal ')' ';' // C11 1338 1338 { $$ = DeclarationNode::newStaticAssert( $3, $5 ); } 1339 | STATICASSERT '(' constant_expression ')' ';' // CFA 1340 { $$ = DeclarationNode::newStaticAssert( $3, build_constantStr( *new string( "" ) ) ); } 1339 1341 1340 1342 // C declaration syntax is notoriously confusing and error prone. Cforall provides its own type, variable and function … … 1881 1883 1882 1884 field_declaration: 1883 cfa_field_declaring_list ';' // CFA, new style field declaration 1885 type_specifier field_declaring_list ';' 1886 { $$ = distAttr( $1, $2 ); } 1887 | EXTENSION type_specifier field_declaring_list ';' // GCC 1888 { distExt( $3 ); $$ = distAttr( $2, $3 ); } // mark all fields in list 1889 | typedef_declaration ';' // CFA 1890 { SemanticError( yylloc, "Typedef in aggregate is currently unimplemented." ); $$ = nullptr; } 1891 | cfa_field_declaring_list ';' // CFA, new style field declaration 1884 1892 | EXTENSION cfa_field_declaring_list ';' // GCC 1885 { 1886 distExt( $2 ); // mark all fields in list 1887 $$ = $2; 1888 } 1889 | type_specifier field_declaring_list ';' 1890 { 1891 $$ = distAttr( $1, $2 ); } 1892 | EXTENSION type_specifier field_declaring_list ';' // GCC 1893 { 1894 distExt( $3 ); // mark all fields in list 1895 $$ = distAttr( $2, $3 ); 1896 } 1897 | static_assert 1893 { distExt( $2 ); $$ = $2; } // mark all fields in list 1894 | cfa_typedef_declaration ';' // CFA 1895 { SemanticError( yylloc, "Typedef in aggregate is currently unimplemented." ); $$ = nullptr; } 1896 | static_assert // C11 1898 1897 ; 1899 1898
Note:
See TracChangeset
for help on using the changeset viewer.