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
);
22 inline __attribute__((always_inline
))
25 char *p
= __builtin_alloca (size
+ 1);
29 if (__builtin_strncmp (p
, "good", size
) != 0)
33 printf ("Failed: %s != good\n", p
);
38 if (check_int (&i
, __alignof__(i
)) != i
)