2 /* { dg-skip-if "Stack alignment is too small" { hppa*-*-hpux* } } */
3 /* { dg-require-effective-target alloca } */
12 typedef int aligned
__attribute__((aligned(ALIGNMENT
)));
17 bar (char *p
, int size
)
19 __builtin_strncpy (p
, "good", size
);
30 size
= va_arg (arg
, int);
34 p
= __builtin_alloca (size
+ 1);
36 x
= va_arg (arg
, double);
41 if (__builtin_strncmp (p
, "good", size
) != 0)
45 printf ("Failed: %s != good\n", p
);
50 if (check_int (&i
, __alignof__(i
)) != i
)
55 foo (const char *fmt
, ...)