Changeset b5b0907 for src/Parser/parser.yy
- Timestamp:
- Jun 15, 2015, 12:45:26 PM (11 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, ctor, deferred_resn, demangler, enum, forall-pointer-decay, gc_noraii, jacob/cs343-translation, jenkins-sandbox, master, memory, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, string, with_gc
- Children:
- 94b4364
- Parents:
- ea9b9d3 (diff), a1d5d2a (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - File:
-
- 1 edited
-
src/Parser/parser.yy (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/Parser/parser.yy
rea9b9d3 rb5b0907 10 10 // Created On : Sat Sep 1 20:22:55 2001 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Wed Jun 10 20:31:54201513 // Update Count : 104 012 // Last Modified On : Sat Jun 13 07:21:45 2015 13 // Update Count : 1048 14 14 // 15 15 … … 111 111 ExpressionNode *en; 112 112 DeclarationNode *decl; 113 DeclarationNode:: TyConaggKey;113 DeclarationNode::Aggregate 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.1250 1249 { $$ = DeclarationNode::newStorageClass( DeclarationNode::Inline ); } 1251 1250 | FORTRAN // C99 1252 1251 { $$ = DeclarationNode::newStorageClass( DeclarationNode::Fortran ); } 1252 | NORETURN // C11 1253 { $$ = DeclarationNode::newStorageClass( DeclarationNode::Noreturn ); } 1254 | THREADLOCAL // C11 1255 { $$ = DeclarationNode::newStorageClass( DeclarationNode::Threadlocal ); } 1253 1256 ; 1254 1257
Note:
See TracChangeset
for help on using the changeset viewer.