Changeset 361bf01 for src/AST/Pass.hpp
- Timestamp:
- Dec 11, 2020, 11:20:45 PM (4 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 5b9a0ae
- Parents:
- a6e0e4c
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/AST/Pass.hpp
ra6e0e4c r361bf01 287 287 /// Internal RAII guard for forall substitutions 288 288 struct guard_forall_subs { 289 guard_forall_subs( Pass<core_t> & pass, const ParameterizedType * type )289 guard_forall_subs( Pass<core_t> & pass, const FunctionType * type ) 290 290 : pass( pass ), type( type ) { __pass::forall::enter(pass.core, 0, type ); } 291 291 ~guard_forall_subs() { __pass::forall::leave(pass.core, 0, type ); } 292 292 Pass<core_t> & pass; 293 const ParameterizedType * type;293 const FunctionType * type; 294 294 }; 295 295
Note: See TracChangeset
for help on using the changeset viewer.