Changeset 81da3da4 for src/Concurrency/Keywords.cpp
- Timestamp:
- Dec 11, 2023, 4:18:13 AM (22 months ago)
- Branches:
- master
- Children:
- 21ce2c7, 2554f24
- Parents:
- 5ddb8bf (diff), 1c85ffc (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. - File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
src/Concurrency/Keywords.cpp
r5ddb8bf r81da3da4 5 5 // file "LICENCE" distributed with Cforall. 6 6 // 7 // Keywords New.cpp -- Implement concurrency constructs from their keywords.7 // Keywords.cpp -- Implement concurrency constructs from their keywords. 8 8 // 9 9 // Author : Andrew Beach … … 14 14 // 15 15 16 #include "Concurrency/Keywords.h" 17 16 18 #include <iostream> 17 18 #include "Concurrency/Keywords.h"19 19 20 20 #include "AST/Copy.hpp" … … 30 30 #include "Common/utility.h" 31 31 #include "Common/UniqueName.h" 32 #include "ControlStruct/LabelGenerator New.hpp"32 #include "ControlStruct/LabelGenerator.hpp" 33 33 #include "InitTweak/InitTweak.h" 34 34 #include "Virtual/Tables.h" … … 482 482 location, 483 483 getter_name, 484 {}, // forall485 484 { this_decl }, // params 486 485 { ret_decl }, // returns … … 499 498 location, 500 499 "main", 501 {},502 500 { ast::deepCopy( this_decl ) }, 503 501 {}, … … 575 573 location, 576 574 "lock", 577 { /* forall */ },578 575 { 579 576 // Copy the declaration of this. … … 607 604 location, 608 605 "unlock", 609 { /* forall */ },610 606 { 611 607 // Last use, consume the declaration of this.
Note:
See TracChangeset
for help on using the changeset viewer.