Ignore:
Timestamp:
Feb 9, 2017, 5:31:49 PM (9 years ago)
Author:
Thierry Delisle <tdelisle@…>
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.
Message:

Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Parser/parser.yy

    r9e45e46 ra073d46  
    1010// Created On       : Sat Sep  1 20:22:55 2001
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Mon Feb  6 16:00:29 2017
    13 // Update Count     : 2181
     12// Last Modified On : Thu Feb  9 15:00:03 2017
     13// Update Count     : 2184
    1414//
    1515
     
    20882088        declaration
    20892089        | 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                }
    20922094        | EXTERN STRINGliteral                                                          // C++-style linkage specifier
    20932095                {
Note: See TracChangeset for help on using the changeset viewer.