Changeset 4c2e561 for src/Concurrency


Ignore:
Timestamp:
Jul 4, 2023, 4:29:10 PM (3 years ago)
Author:
Peter A. Buhr <pabuhr@…>
Branches:
master
Children:
3430ce8
Parents:
3397eed (diff), 7f1be01 (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/Concurrency/KeywordsNew.cpp

    r3397eed r4c2e561  
    534534void ConcurrentSueKeyword::addGetRoutines(
    535535                const ast::ObjectDecl * field, const ast::FunctionDecl * forward ) {
     536        // Clone the signature and then build the body.
     537        ast::FunctionDecl * decl = ast::deepCopy( forward );
     538
    536539        // Say it is generated at the "same" places as the forward declaration.
    537         const CodeLocation & location = forward->location;
    538 
    539         const ast::DeclWithType * param = forward->params.front();
     540        const CodeLocation & location = decl->location;
     541
     542        const ast::DeclWithType * param = decl->params.front();
    540543        ast::Stmt * stmt = new ast::ReturnStmt( location,
    541544                new ast::AddressExpr( location,
     
    551554        );
    552555
    553         ast::FunctionDecl * decl = ast::deepCopy( forward );
    554556        decl->stmts = new ast::CompoundStmt( location, { stmt } );
    555557        declsToAddAfter.push_back( decl );
Note: See TracChangeset for help on using the changeset viewer.