]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.dg/pr50764.c
replace ISL with isl
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / pr50764.c
CommitLineData
7f557df2
TV
1/* { dg-do compile } */
2/* { dg-options "-O2 -fsched2-use-superblocks -ftree-tail-merge" } */
2e969ce5 3/* { dg-require-effective-target alloca } */
7f557df2
TV
4
5typedef int aligned __attribute__ ((aligned (64)));
6extern void abort (void);
7
8int bar (void *p);
9
10void
11foo (void)
12{
13 char *p = __builtin_alloca (13);
14 aligned i;
15
16 if (bar (p) || bar (&i))
17 abort ();
18}