Changeset d912bed for src/Parser


Ignore:
Timestamp:
Dec 16, 2019, 5:40:36 PM (5 years ago)
Author:
Peter A. Buhr <pabuhr@…>
Branches:
ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
Children:
7006ba5
Parents:
6f9cc13
Message:

harmonize SynTree/LinkageSpec?.* with AST/LinkageSpec.*

Location:
src/Parser
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • src/Parser/DeclarationNode.cc

    r6f9cc13 rd912bed  
    1010// Created On       : Sat May 16 12:34:05 2015
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Mon Dec 16 09:32:40 2019
    13 // Update Count     : 1132
     12// Last Modified On : Mon Dec 16 15:32:22 2019
     13// Update Count     : 1133
    1414//
    1515
     
    133133
    134134        if ( linkage != LinkageSpec::Cforall ) {
    135                 os << LinkageSpec::linkageName( linkage ) << " ";
     135                os << LinkageSpec::name( linkage ) << " ";
    136136        } // if
    137137
  • src/Parser/parser.yy

    r6f9cc13 rd912bed  
    1010// Created On       : Sat Sep  1 20:22:55 2001
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Mon Dec 16 07:45:59 2019
    13 // Update Count     : 4408
     12// Last Modified On : Mon Dec 16 15:32:58 2019
     13// Update Count     : 4409
    1414//
    1515
     
    25892589                {
    25902590                        linkageStack.push( linkage );                           // handle nested extern "C"/"Cforall"
    2591                         linkage = LinkageSpec::linkageUpdate( yylloc, linkage, $2 );
     2591                        linkage = LinkageSpec::update( yylloc, linkage, $2 );
    25922592                }
    25932593          '{' up external_definition_list_opt down '}'
Note: See TracChangeset for help on using the changeset viewer.