about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-05-15 09:35:00 -0700
committerKartik K. Agaram <vc@akkartik.com>2016-05-15 09:35:00 -0700
commitf59ff4a724d98abfec635df38c9840463fb090df (patch)
treeb33a0f190e0e921ff518d5b27d5a1ef7a314357e
parenta3218ee87458e19630f1480421a8275647608905 (diff)
downloadmu-f59ff4a724d98abfec635df38c9840463fb090df.tar.gz
2962
-rw-r--r--036refcount.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/036refcount.cc b/036refcount.cc
index 929efaf3..ce4ba9ab 100644
--- a/036refcount.cc
+++ b/036refcount.cc
@@ -273,6 +273,9 @@ void compute_container_address_offsets(type_tree* type) {
   }
 }
 
+//: use metadata.address to update refcounts within containers, arrays and
+//: exclusive containers
+
 :(before "End write_memory(x) Special-cases")
 if (is_mu_container(x))
   update_container_refcounts(x, data);