- Timestamp:
- Aug 11, 2020, 5:07:56 PM (5 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 343d10e
- Parents:
- 22f94a4
- Location:
- src/AST
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified src/AST/Pass.proto.hpp ¶
r22f94a4 r0d070ca 248 248 template< typename pass_t > 249 249 static inline auto beginTrace(pass_t &, int) -> decltype( pass_t::traceId, void() ) { 250 Stats::Heap::stacktrace_push(pass_t::traceId);250 // Stats::Heap::stacktrace_push(pass_t::traceId); 251 251 } 252 252 253 253 template< typename pass_t > 254 254 static inline auto endTrace(pass_t &, int) -> decltype( pass_t::traceId, void() ) { 255 Stats::Heap::stacktrace_pop();255 // Stats::Heap::stacktrace_pop(); 256 256 } 257 257 -
TabularUnified src/AST/TypeSubstitution.cpp ¶
r22f94a4 r0d070ca 20 20 21 21 22 size_t TypeSubstitution::Substituter::traceId = Stats::Heap::new_stacktrace_id("TypeSubstitution");22 // size_t TypeSubstitution::Substituter::traceId = Stats::Heap::new_stacktrace_id("TypeSubstitution"); 23 23 24 24 TypeSubstitution::TypeSubstitution() {
Note: See TracChangeset
for help on using the changeset viewer.