Changes in src/Concurrency/Actors.cpp [37273c8:b065dbb]
- File:
-
- 1 edited
-
src/Concurrency/Actors.cpp (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/Concurrency/Actors.cpp
r37273c8 rb065dbb 265 265 decl->location, 266 266 "__CFA_receive_wrap", 267 {}, // forall 267 268 { 268 269 new ObjectDecl( … … 287 288 ) 288 289 }, // params 289 { 290 { 290 291 new ObjectDecl( 291 292 decl->location, … … 399 400 ) 400 401 )); 401 402 402 403 // Generates: return receiver; 403 404 sendBody->push_back( new ReturnStmt( decl->location, new NameExpr( decl->location, "receiver" ) ) ); … … 407 408 decl->location, 408 409 "?|?", 410 {}, // forall 409 411 { 410 412 new ObjectDecl( … … 419 421 ) 420 422 }, // params 421 { 423 { 422 424 new ObjectDecl( 423 425 decl->location, … … 432 434 { Function::Inline } 433 435 ); 434 436 435 437 // forward decls to resolve use before decl problem for '|' routines 436 438 forwardDecls.insertDecl( *actorIter, *messageIter , ast::deepCopy( sendOperatorFunction ) );
Note:
See TracChangeset
for help on using the changeset viewer.