about summary refs log tree commit diff stats
path: root/054static_dispatch.cc
diff options
context:
space:
mode:
Diffstat (limited to '054static_dispatch.cc')
-rw-r--r--054static_dispatch.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/054static_dispatch.cc b/054static_dispatch.cc
index 702e5331..0af3ddeb 100644
--- a/054static_dispatch.cc
+++ b/054static_dispatch.cc
@@ -184,18 +184,22 @@ string best_variant(instruction& inst, const recipe& caller_recipe) {
   vector<recipe_ordinal> candidates;
 
   // Static Dispatch Phase 1
+//?   cerr << inst.name << " phase 1\n";
   candidates = strictly_matching_variants(inst, variants);
   if (!candidates.empty()) return best_variant(inst, candidates).name;
 
   // Static Dispatch Phase 2
+//?   cerr << inst.name << " phase 2\n";
   candidates = strictly_matching_variants_except_literal_against_address_or_boolean(inst, variants);
   if (!candidates.empty()) return best_variant(inst, candidates).name;
 
+//?   cerr << inst.name << " phase 3\n";
   // Static Dispatch Phase 3
   //: (shape-shifting recipes in a later layer)
   // End Static Dispatch Phase 3
 
   // Static Dispatch Phase 4
+//?   cerr << inst.name << " phase 4\n";
   candidates = matching_variants(inst, variants);
   if (!candidates.empty()) return best_variant(inst, candidates).name;