diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2016-05-15 09:35:00 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2016-05-15 09:35:00 -0700 |
commit | f59ff4a724d98abfec635df38c9840463fb090df (patch) | |
tree | b33a0f190e0e921ff518d5b27d5a1ef7a314357e | |
parent | a3218ee87458e19630f1480421a8275647608905 (diff) | |
download | mu-f59ff4a724d98abfec635df38c9840463fb090df.tar.gz |
2962
-rw-r--r-- | 036refcount.cc | 3 |
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); |