[Bug target/43348] [4.4 regression] ICE in final_scan_insn, at final.c:2604

mikpe at it dot uu dot se gcc-bugzilla@gcc.gnu.org
Sun Mar 14 11:45:00 GMT 2010



------- Comment #5 from mikpe at it dot uu dot se  2010-03-14 11:45 -------
Disabling the "Do not inline regular functions into always-inline functions"
part of r156601 prevents the ICE:

--- gcc-4.4-20100209/gcc/ipa-inline.c.~1~
+++ gcc-4.4-20100209/gcc/ipa-inline.c
@@ -1421,7 +1421,7 @@ cgraph_decide_inlining_incrementally (st
   if (mode != INLINE_ALL && mode != INLINE_ALWAYS_INLINE
       /* Never inline regular functions into always-inline functions
         during incremental inlining.  */
-      && !node->local.disregard_inline_limits)
+      /* && !node->local.disregard_inline_limits*/)
     for (e = node->callees; e; e = e->next_callee)
       {
        if (!e->callee->local.inlinable


-- 

mikpe at it dot uu dot se changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |mikpe at it dot uu dot se


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43348



More information about the Gcc-bugs mailing list