Changeset d923fca for src/Concurrency/Waituntil.cpp
- Timestamp:
- Feb 18, 2025, 12:54:23 PM (6 weeks ago)
- Branches:
- master
- Children:
- 8705a11
- Parents:
- 3e5fea2
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified src/Concurrency/Waituntil.cpp ¶
r3e5fea2 rd923fca 720 720 ) 721 721 ), 722 new BranchStmt( cLoc, BranchStmt:: Kind::Break, Label( cLoc, switchLabel ) )722 new BranchStmt( cLoc, BranchStmt::Goto, Label( cLoc, switchLabel ) ) 723 723 } 724 724 ) … … 733 733 new NameExpr( loc, idxName ), 734 734 std::move( switchCases ), 735 {} 736 ) 737 ); 738 739 ifBody->push_back( 740 new NullStmt( loc, 735 741 { Label( loc, switchLabel ) } 736 742 ) … … 790 796 { new NameExpr( loc, clauseData.at(0)->statusName ) } 791 797 ), 792 new BranchStmt( loc, BranchStmt:: Kind::Break, Label( loc, forLabel ) )798 new BranchStmt( loc, BranchStmt::Goto, Label( loc, forLabel ) ) 793 799 ), 794 800 ifSwitch 795 801 } 796 802 ), // body 803 {} 804 ), 805 new NullStmt( loc, 797 806 { Label( loc, forLabel ) } 798 807 )
Note: See TracChangeset
for help on using the changeset viewer.