Commit deeec83d by Richard Biener Committed by Richard Biener

re PR tree-optimization/89594 (ICE: Segmentation fault (in gsi_for_stmt(gimple*)))

2019-03-05  Richard Biener  <rguenther@suse.de>

	PR tree-optimization/89594
	* tree-if-conv.c (pass_if_conversion::execute): Handle
	case where .LOOP_VECTORIZED_FUNCTION was removed.

	* gcc.dg/pr89594.c: New testcase.

From-SVN: r269389
parent 186ae93c
2019-03-05 Richard Biener <rguenther@suse.de>
PR tree-optimization/89594
* tree-if-conv.c (pass_if_conversion::execute): Handle
case where .LOOP_VECTORIZED_FUNCTION was removed.
2019-03-05 Jakub Jelinek <jakub@redhat.com>
PR bootstrap/89560
......
2019-03-05 Richard Biener <rguenther@suse.de>
PR tree-optimization/89594
* gcc.dg/pr89594.c: New testcase.
2019-03-05 Jakub Jelinek <jakub@redhat.com>
PR tree-optimization/89487
......
/* { dg-do compile } */
/* { dg-options "-O -ftree-loop-if-convert -ftree-loop-vectorize -fno-tree-ch" } */
int h3;
void
in (void)
{
long int zr;
int ee = 0;
for (zr = 0; zr < 1; zr = h3)
{
ee = !!h3 ? zr : 0;
h3 = 0;
while (h3 < 0)
h3 = 0;
}
h3 = 0;
while (h3 < 1)
h3 = !!ee ? (!!h3 + 1) : 0;
}
......@@ -3176,6 +3176,8 @@ pass_if_conversion::execute (function *fun)
for (unsigned i = 0; i < preds.length (); ++i)
{
gimple *g = preds[i];
if (!gimple_bb (g))
continue;
unsigned ifcvt_loop = tree_to_uhwi (gimple_call_arg (g, 0));
if (!get_loop (fun, ifcvt_loop))
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment