* cgraphunit.c (cgraph_optimize_function): Call optimize_inline_calls
authorhubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 2 Jan 2004 18:06:16 +0000 (18:06 +0000)
committerhubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 2 Jan 2004 18:06:16 +0000 (18:06 +0000)
when there is nothing to inline but warnings are requested.
(cgraph_decide_inlining):  Fix memory leak.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@75333 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/cgraphunit.c

index b2b7a14..35dfeb8 100644 (file)
@@ -1,5 +1,11 @@
 2004-01-02  Jan Hubicka  <jh@suse.cz>
 
+       * cgraphunit.c (cgraph_optimize_function):  Call optimize_inline_calls
+       when there is nothing to inline but warnings are requested.
+       (cgraph_decide_inlining):  Fix memory leak.
+
+2004-01-02  Jan Hubicka  <jh@suse.cz>
+
        * expr.c (store_constructor):  Fix pasto in previous patch.
 
 2004-01-02  Kazu Hirata  <kazu@cs.umass.edu>
index dfe4c71..932c418 100644 (file)
@@ -476,7 +476,7 @@ cgraph_optimize_function (struct cgraph_node *node)
       struct cgraph_edge *e;
 
       for (e = node->callees; e; e = e->next_callee)
-       if (e->inline_call)
+       if (e->inline_call || warn_inline)
          break;
       if (e)
         optimize_inline_calls (decl);
@@ -1213,17 +1213,17 @@ cgraph_decide_inlining (void)
                }
            }
        }
-
-      if (cgraph_dump_file)
-       fprintf (cgraph_dump_file,
-                "\nInlined %i calls, eliminated %i functions, "
-                "%i insns turned to %i insns.\n\n",
-                ncalls_inlined, nfunctions_inlined, initial_insns,
-                overall_insns);
-      free (order);
-      free (inlined);
-      free (inlined_callees);
     }
+
+  if (cgraph_dump_file)
+    fprintf (cgraph_dump_file,
+            "\nInlined %i calls, eliminated %i functions, "
+            "%i insns turned to %i insns.\n\n",
+            ncalls_inlined, nfunctions_inlined, initial_insns,
+            overall_insns);
+  free (order);
+  free (inlined);
+  free (inlined_callees);
 }
 
 /* Decide on the inlining.  We do so in the topological order to avoid