Changes in src/Parser/parser.yy [68cd1ce:b1d6dd5]
- File:
-
- 1 edited
-
src/Parser/parser.yy (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/Parser/parser.yy
r68cd1ce rb1d6dd5 10 10 // Created On : Sat Sep 1 20:22:55 2001 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Sat Jun 13 07:21:45201513 // Update Count : 104 812 // Last Modified On : Wed Jun 10 20:31:54 2015 13 // Update Count : 1040 14 14 // 15 15 … … 111 111 ExpressionNode *en; 112 112 DeclarationNode *decl; 113 DeclarationNode:: AggregateaggKey;113 DeclarationNode::TyCon aggKey; 114 114 DeclarationNode::TypeClass tclass; 115 115 StatementNode *sn; … … 887 887 888 888 asm_operand: // GCC 889 STRINGliteral '(' constant_expression ')' {}889 STRINGliteral '(' constant_expression ')' {} 890 890 ; 891 891 … … 1247 1247 { $$ = DeclarationNode::newStorageClass( DeclarationNode::Register ); } 1248 1248 | INLINE // C99 1249 // INLINE is essentially a storage class specifier for functions, and hence, belongs here. 1249 1250 { $$ = DeclarationNode::newStorageClass( DeclarationNode::Inline ); } 1250 1251 | FORTRAN // C99 1251 1252 { $$ = DeclarationNode::newStorageClass( DeclarationNode::Fortran ); } 1252 | NORETURN // C111253 { $$ = DeclarationNode::newStorageClass( DeclarationNode::Noreturn ); }1254 | THREADLOCAL // C111255 { $$ = DeclarationNode::newStorageClass( DeclarationNode::Threadlocal ); }1256 1253 ; 1257 1254
Note:
See TracChangeset
for help on using the changeset viewer.