Changes in src/AST/Pass.impl.hpp [6cebfef:3945abe]
- File:
-
- 1 edited
-
src/AST/Pass.impl.hpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/AST/Pass.impl.hpp
r6cebfef r3945abe 1039 1039 1040 1040 //-------------------------------------------------------------------------- 1041 // MutexStmt1042 template< typename core_t >1043 const ast::Stmt * ast::Pass< core_t >::visit( const ast::MutexStmt * node ) {1044 VISIT_START( node );1045 1046 VISIT({1047 // mutex statements introduce a level of scope (for the initialization)1048 guard_symtab guard { *this };1049 maybe_accept( node, &MutexStmt::stmt );1050 maybe_accept( node, &MutexStmt::mutexObjs );1051 })1052 1053 VISIT_END( Stmt, node );1054 }1055 1056 //--------------------------------------------------------------------------1057 1041 // ApplicationExpr 1058 1042 template< typename core_t >
Note:
See TracChangeset
for help on using the changeset viewer.