about summary refs log tree commit diff stats
path: root/044space_surround.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-08-21 08:38:20 -0700
committerKartik K. Agaram <vc@akkartik.com>2016-08-21 08:38:20 -0700
commitf40137f1327ad3203eff5f6894baaa68a700cec1 (patch)
treeede862c2e4b89b3dc7d1fcf28f05327982934b37 /044space_surround.cc
parent10bbca643f16daf640caf040a1f86eb93e3d66e2 (diff)
downloadmu-f40137f1327ad3203eff5f6894baaa68a700cec1.tar.gz
3239
Diffstat (limited to '044space_surround.cc')
-rw-r--r--044space_surround.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/044space_surround.cc b/044space_surround.cc
index 341d25b5..733b072f 100644
--- a/044space_surround.cc
+++ b/044space_surround.cc
@@ -21,11 +21,11 @@ def main [
 ]
 def dummy [  # just for the /names: property above
 ]
-# chain space: 10 + /*skip refcount*/1 + /*skip length*/1
+# chain space: 10 + (refcount and length) 2
 +mem: storing 20 in location 12
-# store to default space: 10 + /*skip refcount*/1 + /*skip length*/1 + /*index*/1
+# store to default space: 10 + (skip refcount and length) 2 + (index) 1
 +mem: storing 32 in location 13
-# store to chained space: /*contents of location 12*/20 + /*skip refcount*/1 + /*skip length*/1 + /*index*/1
+# store to chained space: (contents of location 12) 20 + (refcount and length) 2 + (index) 1
 +mem: storing 33 in location 23
 
 :(before "End Checks For Reclaiming Locals")