Changeset ddfd945 for src/Parser/parser.yy
- Timestamp:
- Mar 16, 2017, 8:47:36 AM (9 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
- Children:
- fb04321
- Parents:
- 26ba208
- File:
-
- 1 edited
-
src/Parser/parser.yy (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/Parser/parser.yy
r26ba208 rddfd945 10 10 // Created On : Sat Sep 1 20:22:55 2001 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Thu Mar 16 08: 00:59201713 // Update Count : 23 0912 // Last Modified On : Thu Mar 16 08:36:17 2017 13 // Update Count : 2310 14 14 // 15 15 … … 1460 1460 // Put function specifiers here to simplify parsing rules, but separate them semantically. 1461 1461 | INLINE // C99 1462 { $$ = DeclarationNode::newFuncSpecifier( DeclarationNode::Inline ); }1462 { $$ = DeclarationNode::newFuncSpecifier( Type::Inline ); } 1463 1463 | FORTRAN // C99 1464 { $$ = DeclarationNode::newFuncSpecifier( DeclarationNode::Fortran ); }1464 { $$ = DeclarationNode::newFuncSpecifier( Type::Fortran ); } 1465 1465 | NORETURN // C11 1466 { $$ = DeclarationNode::newFuncSpecifier( DeclarationNode::Noreturn ); }1466 { $$ = DeclarationNode::newFuncSpecifier( Type::Noreturn ); } 1467 1467 ; 1468 1468
Note:
See TracChangeset
for help on using the changeset viewer.