about summary refs log tree commit diff stats
path: root/036refcount.cc
diff options
context:
space:
mode:
Diffstat (limited to '036refcount.cc')
-rw-r--r--036refcount.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/036refcount.cc b/036refcount.cc
index c6e41471..80289641 100644
--- a/036refcount.cc
+++ b/036refcount.cc
@@ -277,9 +277,10 @@ bool operator<(const address_element_info& a, const address_element_info& b) {
   return false;  // equal
 }
 
-
 //: populate metadata.address in a separate transform, because it requires
 //: already knowing the sizes of all types
+//: does unnecessary work for meaningless types
+//:   e.g. (address number) also computes address offsets for 'address'
 
 :(after "Transform.push_back(compute_container_sizes)")
 Transform.push_back(compute_container_address_offsets);