Commit 44cb6d4d by Richard Guenther Committed by Richard Biener

re PR tree-optimization/46288 (ICE: SIGSEGV in walk_gimple_op (gimple.c:2857)…

re PR tree-optimization/46288 (ICE: SIGSEGV in walk_gimple_op (gimple.c:2857) with -O -fno-tree-dce and __builtin_expect())

2010-11-03  Richard Guenther  <rguenther@suse.de>

	PR middle-end/46288
	* predict.c (strip_predict_hints): Simply DCE builtin expect if
	the result is unused.

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

From-SVN: r166258
parent b7fa98e2
2010-11-03 Richard Guenther <rguenther@suse.de>
PR middle-end/46288
* predict.c (strip_predict_hints): Simply DCE builtin expect if
the result is unused.
2010-11-03 Jakub Jelinek <jakub@redhat.com>
PR tree-optimization/46009
......@@ -1329,9 +1329,17 @@ strip_predict_hints (void)
&& gimple_call_num_args (stmt) == 2)
{
var = gimple_call_lhs (stmt);
ass_stmt = gimple_build_assign (var, gimple_call_arg (stmt, 0));
gsi_replace (&bi, ass_stmt, true);
if (var)
{
ass_stmt
= gimple_build_assign (var, gimple_call_arg (stmt, 0));
gsi_replace (&bi, ass_stmt, true);
}
else
{
gsi_remove (&bi, true);
continue;
}
}
}
gsi_next (&bi);
......
2010-11-03 Richard Guenther <rguenther@suse.de>
PR middle-end/46288
* gcc.dg/pr46288.c: New testcase.
2010-11-03 Richard Guenther <rguenther@suse.de>
PR tree-optimization/44807
* gcc.dg/torture/pr44807.c: New testcase.
......
/* { dg-do compile } */
/* { dg-options "-O -fno-tree-dce" } */
void foo (int i)
{
__builtin_expect (i, i);
}
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