Commit ce25177f by Jakub Jelinek

testsuite: Add a -O2 -fgimple testcase next to the -O2 -fno-tree-dse one [PR93820]

2020-02-26  Jakub Jelinek  <jakub@redhat.com>

	PR tree-optimization/93820
	* gcc.dg/pr93820-2.c: New test.
parent 4d213bf6
2020-02-26 Jakub Jelinek <jakub@redhat.com> 2020-02-26 Jakub Jelinek <jakub@redhat.com>
PR tree-optimization/93820 PR tree-optimization/93820
* gcc.dg/pr93820-2.c: New test.
PR tree-optimization/93820
* gcc.dg/pr93820.c: New test. * gcc.dg/pr93820.c: New test.
PR c++/93905 PR c++/93905
......
/* PR tree-optimization/93820 */
/* { dg-do run } */
/* { dg-options "-O2 -fgimple" } */
typedef int v4si __attribute__((vector_size(4 * sizeof (int))));
int a[10];
void __GIMPLE (ssa,startwith("store-merging"))
foo (int *p)
{
int _2;
__BB(2):
_2 = *p_1(D);
a[6] = _2;
a[4] = 1;
__MEM <v4si> ((int *)&a + _Literal (int *) 16) = _Literal (v4si) { 0, 0, 0, 0 };
a[3] = 0;
return;
}
int
main ()
{
int i = 0;
foo (&i);
for (i = 0; i < 10; i++)
if (a[i])
__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