about summary refs log tree commit diff stats
path: root/057static_dispatch.cc
diff options
context:
space:
mode:
Diffstat (limited to '057static_dispatch.cc')
-rw-r--r--057static_dispatch.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/057static_dispatch.cc b/057static_dispatch.cc
index 0bb23945..93a2e36e 100644
--- a/057static_dispatch.cc
+++ b/057static_dispatch.cc
@@ -176,7 +176,7 @@ void replace_best_variant(instruction& inst, const recipe& caller_recipe) {
   trace(9992, "transform") << "score for base: " << best_score << end();
   for (long long int i = 0; i < SIZE(variants); ++i) {
     if (variants.at(i) == -1) continue;
-//?     trace(9992, "transform") << "checking variant " << i << ": " << variants.at(i) << end();
+    trace(9992, "transform") << "checking variant " << i << ": " << header_label(variants.at(i)) << end();
     long long int current_score = variant_score(inst, variants.at(i));
     trace(9992, "transform") << "score for variant " << i << ": " << current_score << end();
     if (current_score > best_score) {
8'>108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142