about summary refs log tree commit diff stats
path: root/033exclusive_container.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-11-07 09:10:48 -0800
committerKartik K. Agaram <vc@akkartik.com>2016-11-07 09:10:48 -0800
commit1211a3ab30eb5cfbf1cb5b910eefb8d64dcb2107 (patch)
tree5d655f51604d85c8568e19c05dd129ad953c6511 /033exclusive_container.cc
parent133a4614365bbcc74602284beedc7b274fcf3e24 (diff)
downloadmu-1211a3ab30eb5cfbf1cb5b910eefb8d64dcb2107.tar.gz
3643
Standardize on calling literate waypoints "Special-cases" rather than
"Cases". Invariably there's a default path already present.
Diffstat (limited to '033exclusive_container.cc')
-rw-r--r--033exclusive_container.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/033exclusive_container.cc b/033exclusive_container.cc
index 88b33639..bf79e064 100644
--- a/033exclusive_container.cc
+++ b/033exclusive_container.cc
@@ -30,12 +30,12 @@ def main [
 +mem: storing 34 in location 5
 +mem: storing 35 in location 6
 
-:(before "End size_of(type) Cases")
+:(before "End size_of(type) Special-cases")
 if (t.kind == EXCLUSIVE_CONTAINER) {
   // Compute size_of Exclusive Container
   return get(Container_metadata, type).size;
 }
-:(before "End compute_container_sizes Atom Cases")
+:(before "End compute_container_sizes Atom Special-cases")
 if (info.kind == EXCLUSIVE_CONTAINER) {
   compute_exclusive_container_sizes(info, type, pending_metadata, location_for_error_messages);
 }
@@ -314,7 +314,7 @@ def main [
 +mem: storing 34 in location 6
 $error: 0
 
-:(before "End check_merge_call Cases")
+:(before "End check_merge_call Special-cases")
 case EXCLUSIVE_CONTAINER: {
   assert(state.data.top().container_element_index == 0);
   trace(9999, "transform") << "checking exclusive container " << to_string(container) << " vs ingredient " << ingredient_index << end();
@@ -435,7 +435,7 @@ $error: 0
 
 //: Since the different variants of an exclusive-container might have
 //: different sizes, relax the size mismatch check for 'merge' instructions.
-:(before "End size_mismatch(x) Cases")
+:(before "End size_mismatch(x) Special-cases")
 if (current_step_index() < SIZE(Current_routine->steps())
     && current_instruction().operation == MERGE
     && !current_instruction().products.empty()