about summary refs log tree commit diff stats
path: root/subx/036global_variables.cc
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2018-12-28 11:12:19 -0800
committerKartik Agaram <vc@akkartik.com>2018-12-28 11:14:29 -0800
commit6a7eaa81eea991cd459f295c2dd3882c8528187c (patch)
treeeec627b325f1bfd12f5477850830f52f8820d95e /subx/036global_variables.cc
parent51bf3554b79ebfea92f494e891837a03d656c2fd (diff)
downloadmu-6a7eaa81eea991cd459f295c2dd3882c8528187c.tar.gz
4883 - rudimentary memory allocator
Diffstat (limited to 'subx/036global_variables.cc')
-rw-r--r--subx/036global_variables.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/subx/036global_variables.cc b/subx/036global_variables.cc
index 5c707bd3..c314a4f7 100644
--- a/subx/036global_variables.cc
+++ b/subx/036global_variables.cc
@@ -19,6 +19,7 @@ Transform.push_back(rewrite_global_variables);
 :(code)
 void rewrite_global_variables(program& p) {
   trace(99, "transform") << "-- rewrite global variables" << end();
+  // Begin rewrite_global_variables
   map<string, uint32_t> address;
   compute_addresses_for_global_variables(p, address);
   if (trace_contains_errors()) return;