Changes in / [905eca1:27fed7f1]


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Parser/parser.yy

    r905eca1 r27fed7f1  
    1010// Created On       : Sat Sep  1 20:22:55 2001
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Wed Mar 15 22:06:22 2017
    13 // Update Count     : 2308
     12// Last Modified On : Thu Mar  9 21:40:20 2017
     13// Update Count     : 2292
    1414//
    1515
     
    437437argument_expression:
    438438        // empty
    439                 { $$ = nullptr; }
    440         // | '@'                                                                                                // use default argument
    441         //      { $$ = new ExpressionNode( build_constantInteger( *new string( "2" ) ) ); }
     439                { $$ = nullptr; }                                                               // use default argument
    442440        | assignment_expression
    443441        ;
     
    14061404type_qualifier_name:
    14071405        CONST
    1408                 { $$ = DeclarationNode::newTypeQualifier( Type::Const ); }
     1406                { $$ = DeclarationNode::newTypeQualifier( DeclarationNode::Const ); }
    14091407        | RESTRICT
    1410                 { $$ = DeclarationNode::newTypeQualifier( Type::Restrict ); }
     1408                { $$ = DeclarationNode::newTypeQualifier( DeclarationNode::Restrict ); }
    14111409        | VOLATILE
    1412                 { $$ = DeclarationNode::newTypeQualifier( Type::Volatile ); }
     1410                { $$ = DeclarationNode::newTypeQualifier( DeclarationNode::Volatile ); }
    14131411        | LVALUE                                                                                        // CFA
    1414                 { $$ = DeclarationNode::newTypeQualifier( Type::Lvalue ); }
     1412                { $$ = DeclarationNode::newTypeQualifier( DeclarationNode::Lvalue ); }
    14151413        | MUTEX
    1416                 { $$ = DeclarationNode::newTypeQualifier( Type::Mutex ); }
     1414                { $$ = DeclarationNode::newTypeQualifier( DeclarationNode::Mutex ); }
    14171415        | ATOMIC
    1418                 { $$ = DeclarationNode::newTypeQualifier( Type::Atomic ); }
     1416                { $$ = DeclarationNode::newTypeQualifier( DeclarationNode::Atomic ); }
    14191417        | FORALL '('
    14201418                {
     
    16841682        // empty
    16851683                { $$ = DeclarationNode::newName( 0 ); /* XXX */ } // CFA, no field name
    1686         // '@' // empty
    1687         //      { $$ = DeclarationNode::newName( 0 ); /* XXX */ } // CFA, no field name
    16881684        | bit_subrange_size                                                                     // no field name
    16891685                { $$ = DeclarationNode::newBitfield( $1 ); }
Note: See TracChangeset for help on using the changeset viewer.