Changeset 8d66610 for src/GenPoly/Box.cc


Ignore:
Timestamp:
May 21, 2021, 4:48:10 PM (4 years ago)
Author:
Thierry Delisle <tdelisle@…>
Branches:
ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum
Children:
f1bce515
Parents:
5407cdc (diff), 7404cdc (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/GenPoly/Box.cc

    r5407cdc r8d66610  
    15251525                                        stmtsToAddBefore.push_back( new DeclStmt( newBuf ) );
    15261526
     1527                                        // if the object has a cleanup attribute, the cleanup should be on the buffer, not the pointer
     1528                                        auto matchAndMove = [newBuf](Attribute * attr){
     1529                                                if(attr->name == "cleanup") {
     1530                                                        newBuf->attributes.push_back(attr);
     1531                                                        return true;
     1532                                                }
     1533                                                return false;
     1534                                        };
     1535
     1536                                        objectDecl->attributes.remove_if(matchAndMove);
     1537
    15271538                                        delete objectDecl->get_init();
    15281539                                        objectDecl->set_init( new SingleInit( new VariableExpr( newBuf ) ) );
Note: See TracChangeset for help on using the changeset viewer.