public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* [PATCH] Fix PR71462
@ 2016-06-09  8:45 Richard Biener
  0 siblings, 0 replies; only message in thread
From: Richard Biener @ 2016-06-09  8:45 UTC (permalink / raw)
  To: gcc-patches


I am testing the following patch to robustify into-loop-closed-SSA
rewrite against removed blocks in the changed_bbs bitmap.

Bootstrap and regtest running on x86_64-unknown-linux-gnu.

Richard.

2016-06-09  Richard Biener  <rguenther@suse.de>

	PR tree-optimization/71462
	* tree-ssa-loop-manip.c (find_uses_to_rename): Guard against
	removed blocks.

	* gcc.dg/torture/pr71462.c: New testcase.

Index: gcc/tree-ssa-loop-manip.c
===================================================================
*** gcc/tree-ssa-loop-manip.c	(revision 237248)
--- gcc/tree-ssa-loop-manip.c	(working copy)
*************** find_uses_to_rename (bitmap changed_bbs,
*** 472,479 ****
  
    if (changed_bbs)
      EXECUTE_IF_SET_IN_BITMAP (changed_bbs, 0, index, bi)
!       find_uses_to_rename_bb (BASIC_BLOCK_FOR_FN (cfun, index), use_blocks,
! 			      need_phis, use_flags);
    else
      FOR_EACH_BB_FN (bb, cfun)
        find_uses_to_rename_bb (bb, use_blocks, need_phis, use_flags);
--- 472,482 ----
  
    if (changed_bbs)
      EXECUTE_IF_SET_IN_BITMAP (changed_bbs, 0, index, bi)
!       {
! 	bb = BASIC_BLOCK_FOR_FN (cfun, index);
! 	if (bb)
! 	  find_uses_to_rename_bb (bb, use_blocks, need_phis, use_flags);
!       }
    else
      FOR_EACH_BB_FN (bb, cfun)
        find_uses_to_rename_bb (bb, use_blocks, need_phis, use_flags);
Index: gcc/testsuite/gcc.dg/torture/pr71462.c
===================================================================
*** gcc/testsuite/gcc.dg/torture/pr71462.c	(revision 0)
--- gcc/testsuite/gcc.dg/torture/pr71462.c	(working copy)
***************
*** 0 ****
--- 1,28 ----
+ /* { dg-do compile } */
+ 
+ short a;
+ long b;
+ void fn1()
+ {
+   int c = a = 1;
+   for (; a; a++)
+     {
+       for (; 9 <= 8;)
+ 	for (;;) {
+ 	    a = 20;
+ 	    for (; a <= 35; a++)
+ 	      ;
+ line:;
+ 	}
+       if ((c += 264487869) == 9)
+ 	{
+ 	  unsigned *d = 0;
+ 	  for (; b;)
+ 	    d = (unsigned *)&c;
+ 	  if (d)
+ 	    for (;;)
+ 	      ;
+ 	}
+     }
+   goto line;
+ }

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2016-06-09  8:45 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-06-09  8:45 [PATCH] Fix PR71462 Richard Biener

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).