2 /* { dg-skip-if "Stack alignment is too small" { hppa*-*-hpux* } } */
3 /* { dg-require-effective-target alloca } */
11 typedef int aligned
__attribute__((aligned(ALIGNMENT
)));
16 bar (char *p
, int size
)
18 __builtin_strncpy (p
, "good", size
);
24 char *p
= __builtin_alloca (size
+ 1);
28 if (__builtin_strncmp (p
, "good", size
) != 0)
32 printf ("Failed: %s != good\n", p
);
37 if (check_int (&i
, __alignof__(i
)) != i
)