about summary refs log tree commit diff stats
path: root/034address.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2017-07-09 14:34:17 -0700
committerKartik K. Agaram <vc@akkartik.com>2017-07-09 14:34:17 -0700
commitec99eb7a2aa67b55d0fdc1dcb9c40e59d8ec42a7 (patch)
treeaf0ea692f98dc74082c3509fbad8191cbeb8a042 /034address.cc
parent6573fe1f1aa6d87c027d10429ded7e0162e52902 (diff)
downloadmu-ec99eb7a2aa67b55d0fdc1dcb9c40e59d8ec42a7.tar.gz
3966
Diffstat (limited to '034address.cc')
-rw-r--r--034address.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/034address.cc b/034address.cc
index d4c3e4d7..266580a1 100644
--- a/034address.cc
+++ b/034address.cc
@@ -293,7 +293,7 @@ void transform_new_to_allocate(const recipe_ordinal r) {
 extern const int Reserved_for_tests = 1000;
 int Memory_allocated_until = Reserved_for_tests;
 int Initial_memory_per_routine = 100000;
-:(before "End Setup")
+:(before "End Reset")
 Memory_allocated_until = Reserved_for_tests;
 Initial_memory_per_routine = 100000;
 :(before "End routine Fields")
@@ -357,7 +357,7 @@ int allocate(int size) {
 //? int Num_alloc = 0;
 //? int Total_free = 0;
 //? int Num_free = 0;
-//? :(before "End Setup")
+//? :(before "End Reset")
 //? if (!Memory.empty()) {
 //?   cerr << Total_alloc << "/" << Num_alloc
 //?        << " vs " << Total_free << "/" << Num_free << '\n';