diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2016-08-17 11:54:28 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2016-08-17 11:54:28 -0700 |
commit | ed8e4c17417828528fbb2350b19f24d73c989fc9 (patch) | |
tree | e4131373647e6733a1d5c0cebe04b462b6d9db5e | |
parent | db69ad7a38d9ff1c2bb5b1a2274514d2bdc44d1b (diff) | |
download | mu-ed8e4c17417828528fbb2350b19f24d73c989fc9.tar.gz |
3211
-rw-r--r-- | 036refcount.cc | 2 | ||||
-rw-r--r-- | 037abandon.cc | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/036refcount.cc b/036refcount.cc index 9ee6e657..85a86f21 100644 --- a/036refcount.cc +++ b/036refcount.cc @@ -64,7 +64,7 @@ void update_refcounts(int old_address, int new_address, const type_tree* payload } exit(0); } - // End Decrement Reference Count(old_address, payload_type, payload_size) + // End Decrement Refcount(old_address, payload_type, payload_size) } // increment refcount of new address if (new_address) { diff --git a/037abandon.cc b/037abandon.cc index 455a4201..2c681f7f 100644 --- a/037abandon.cc +++ b/037abandon.cc @@ -13,7 +13,7 @@ def main [ # both allocations should have returned the same address +mem: storing 1 in location 5 -:(before "End Decrement Reference Count(old_address, payload_type, payload_size)") +:(before "End Decrement Refcount(old_address, payload_type, payload_size)") if (old_refcount == 0) { trace(9999, "mem") << "automatically abandoning " << old_address << end(); abandon(old_address, payload_type, payload_size); |