- Timestamp:
- Aug 13, 2021, 3:59:15 PM (3 years ago)
- Branches:
- ADT, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- a4d098c
- Parents:
- 6cebfef
- Location:
- src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Common/CodeLocationTools.cpp
r6cebfef rde52331 125 125 macro(DeclStmt, Stmt) \ 126 126 macro(ImplicitCtorDtorStmt, Stmt) \ 127 macro(MutexStmt, Stmt) \ 127 128 macro(ApplicationExpr, Expr) \ 128 129 macro(UntypedExpr, Expr) \ -
src/Parser/StatementNode.cc
r6cebfef rde52331 374 374 } // build_directive 375 375 376 Statement * build_mutex( ExpressionNode * exprs, StatementNode * stmt ) { 377 std::list< Expression * > expList; 378 buildMoveList( exprs, expList ); 379 Statement * body = maybeMoveBuild<Statement>( stmt ); 380 return new MutexStmt( body, expList ); 381 } // build_mutex 382 376 383 // Local Variables: // 377 384 // tab-width: 4 //
Note: See TracChangeset
for help on using the changeset viewer.