re PR lto/47788 (New LTO failures)
authorJan Hubicka <jh@suse.cz>
Sat, 19 Feb 2011 02:13:17 +0000 (03:13 +0100)
committerJan Hubicka <hubicka@gcc.gnu.org>
Sat, 19 Feb 2011 02:13:17 +0000 (02:13 +0000)
PR middle-end/47788
* ipa-inline.c (compute_inline_parameters): Clear disregard_inline_limits
when function is not inlinable at all.

From-SVN: r170300

gcc/ChangeLog
gcc/ipa-inline.c

index 43d065c12a08ca2f327dc76b0a0d41171652ea59..f59306b7927bb2478086b3ce64df6e23f427a9aa 100644 (file)
@@ -1,3 +1,9 @@
+2011-02-18  Jan Hubicka  <jh@suse.cz>
+
+       PR middle-end/47788
+       * ipa-inline.c (compute_inline_parameters): Clear disregard_inline_limits
+       when function is not inlinable at all.
+
 2011-02-18  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
 
        * config.gcc (hppa[12]*-*-hpux11*): Set extra_parts.
index 176f994bb0826a5d2972082add12772180ca0289..10e57a8750ecf06e419c9ef400b141d27c7cb96b 100644 (file)
@@ -1990,6 +1990,8 @@ compute_inline_parameters (struct cgraph_node *node)
 
   /* Can this function be inlined at all?  */
   node->local.inlinable = tree_inlinable_function_p (node->decl);
+  if (!node->local.inlinable)
+    node->local.disregard_inline_limits = 0;
 
   /* Inlinable functions always can change signature.  */
   if (node->local.inlinable)