From db7cfd404dca643e7049c9226cb03a04b7b6bddc Mon Sep 17 00:00:00 2001 From: Akash Levy Date: Thu, 18 Jun 2026 04:02:52 -0700 Subject: [PATCH] Fix cut_region.h debug --- passes/opt/cut_region.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/passes/opt/cut_region.h b/passes/opt/cut_region.h index 52ce38719..3387922ca 100644 --- a/passes/opt/cut_region.h +++ b/passes/opt/cut_region.h @@ -83,9 +83,9 @@ struct CutRegionWorker budget_noted = true; const char *which = attempt_budget <= 0 ? "attempt budget" : walk_budget <= 0 ? "walk budget" : "eval budget"; - log("Note: %s search %s exhausted in module %s; %d remaining root candidate(s) skipped. " - "Use the pass budget options to raise the limit if QoR matters more than runtime here.\n", - pass_name, which, log_id(module), skipped_roots); + log_debug("Note: %s search %s exhausted in module %s; %d remaining root candidate(s) skipped. " + "Use the pass budget options to raise the limit if QoR matters more than runtime here.\n", + pass_name, which, log_id(module), skipped_roots); } CutRegionWorker(Module *module) : module(module), sigmap(module)