Commit 49ec778e by Jakub Jelinek Committed by Jakub Jelinek

re PR rtl-optimization/50290 (ICE: in distribute_notes, at combine.c:13282 with…

re PR rtl-optimization/50290 (ICE: in distribute_notes, at combine.c:13282 with -O2 -fwhole-program -fno-tree-loop-optimize -fno-tree-vrp -funroll-loops)

	PR rtl-optimization/50290
	* gcc.dg/pr50290.c: New test.

From-SVN: r181694
parent fea99a37
2011-11-24 Jakub Jelinek <jakub@redhat.com>
PR rtl-optimization/50290
* gcc.dg/pr50290.c: New test.
2011-11-24 Paolo Carlini <paolo.carlini@oracle.com>
PR c++/51290
......
/* PR rtl-optimization/50290 */
/* { dg-do run } */
/* { dg-options "-O2 -fno-tree-loop-optimize -fno-tree-vrp -funroll-loops" } */
static int
bar (int t[], int b)
{
int i;
for (i = 0; i < b; i++)
t[i] = i + (i > 0 ? t[i - 1] : 0);
return t[b - 1];
}
static int
foo (int b)
{
int x[b];
return bar (x, b);
}
int
main ()
{
if (foo (6) != 15)
__builtin_abort ();
return 0;
}
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