re PR tree-optimization/49772 (ICE: in ipa_pta_execute, at tree-ssa-structalias.c...
authorRichard Guenther <rguenther@suse.de>
Thu, 8 Dec 2011 13:23:54 +0000 (13:23 +0000)
committerRichard Biener <rguenth@gcc.gnu.org>
Thu, 8 Dec 2011 13:23:54 +0000 (13:23 +0000)
2011-12-08  Richard Guenther  <rguenther@suse.de>

PR tree-optimization/49772
* tree-inline.c (optimize_inline_calls): Remove bail out
on errors.

From-SVN: r182110

gcc/ChangeLog
gcc/tree-inline.c

index 5b4eab59f5b4f6e5e47e59cb1571827d3cd44f0c..b8831739a94a930f90789a8e64fa0699d376c61a 100644 (file)
@@ -1,3 +1,9 @@
+2011-12-08  Richard Guenther  <rguenther@suse.de>
+
+       PR tree-optimization/49772
+       * tree-inline.c (optimize_inline_calls): Remove bail out
+       on errors.
+
 2011-12-08  Richard Guenther  <rguenther@suse.de>
 
        PR lto/50747
index 22604030d4a1d24a6b43accf11a67530fca5f85a..13ad8153fa9ab2f0e8c92b85302992c829860387 100644 (file)
@@ -4216,12 +4216,6 @@ optimize_inline_calls (tree fn)
   struct gimplify_ctx gctx;
   bool inlined_p = false;
 
-  /* There is no point in performing inlining if errors have already
-     occurred -- and we might crash if we try to inline invalid
-     code.  */
-  if (seen_error ())
-    return 0;
-
   /* Clear out ID.  */
   memset (&id, 0, sizeof (id));