Changeset a073d46 for src/Parser/parser.yy
- Timestamp:
- Feb 9, 2017, 5:31:49 PM (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:
- 132fad4
- Parents:
- 9e45e46 (diff), e994912 (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
Legend:
- Unmodified
- Added
- Removed
-
src/Parser/parser.yy
r9e45e46 ra073d46 10 10 // Created On : Sat Sep 1 20:22:55 2001 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Mon Feb 6 16:00:29201713 // Update Count : 218 112 // Last Modified On : Thu Feb 9 15:00:03 2017 13 // Update Count : 2184 14 14 // 15 15 … … 2088 2088 declaration 2089 2089 | external_function_definition 2090 | asm_statement // GCC, global assembler statement 2091 {} 2090 | ASM '(' string_literal ')' ';' // GCC, global assembler statement 2091 { 2092 $$ = DeclarationNode::newAsmStmt( new StatementNode( build_asmstmt( false, $3, 0 ) ) ); 2093 } 2092 2094 | EXTERN STRINGliteral // C++-style linkage specifier 2093 2095 {
Note:
See TracChangeset
for help on using the changeset viewer.