Changeset 7abee38 for src/Common
- Timestamp:
- Feb 28, 2019, 12:03:24 PM (6 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, persistent-indexer, pthread-emulation, qualifiedEnum
- Children:
- 8f74a6a
- Parents:
- fd9ae1d
- Location:
- src/Common
- Files:
-
- 2 added
- 1 deleted
- 1 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified src/Common/Stats/Heap.h ¶
rfd9ae1d r7abee38 16 16 #pragma once 17 17 18 namespace HeapStats { 19 void newPass( const char * const name ); 20 void printStats(); 18 namespace Stats { 19 namespace Heap { 20 void newPass( const char * const name ); 21 void printStats(); 22 } 21 23 } -
TabularUnified src/Common/module.mk ¶
rfd9ae1d r7abee38 15 15 ############################################################################### 16 16 17 SRC += Common/SemanticError.cc \ 18 Common/UniqueName.cc \ 19 Common/DebugMalloc.cc \ 20 Common/Assert.cc \ 21 Common/Heap.cc \ 22 Common/Eval.cc 17 SRC_COMMON = \ 18 Common/Assert.cc \ 19 Common/Stats/Heap.cc \ 20 Common/Eval.cc \ 21 Common/SemanticError.cc \ 22 Common/UniqueName.cc 23 24 SRC += $(SRC_COMMON) Common/DebugMalloc.cc 25 SRCDEMANGLE += $(SRC_COMMON)
Note: See TracChangeset
for help on using the changeset viewer.