From ee5d05db1e7df07d5b29e6cc45e37b3eea17fd0e Mon Sep 17 00:00:00 2001 From: Michael Beck Date: Mon, 7 Apr 2008 11:28:41 +0000 Subject: [PATCH] issue a debug output when inlining [r19166] --- ir/opt/opt_inline.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ir/opt/opt_inline.c b/ir/opt/opt_inline.c index 9af7d528f..f82ae6b5c 100644 --- a/ir/opt/opt_inline.c +++ b/ir/opt/opt_inline.c @@ -842,6 +842,8 @@ int inline_method(ir_node *call, ir_graph *called_graph) { if (! can_inline(call, called_graph)) return 0; + DB((dbg, SET_LEVEL_1, "Inlining %+F(%+F) into %+F\n", call, called_graph, current_ir_graph)); + /* -- Turn off optimizations, this can cause problems when allocating new nodes. -- */ rem_opt = get_opt_optimize(); set_optimize(0); -- 2.20.1