blob: aab8a4c4c9cb2b9e0bb1bf3a814214e6b34ddf3c [file] [log] [blame]
/* PR sanitizer/88619 */
/* { dg-do compile { target fstack_protector } } */
/* { dg-options "-fstack-protector-strong -fsanitize=address" } */
typedef int A __attribute__((aligned (64)));
int
main ()
{
A b;
int *p = &b;
*(p - 1) = 123;
__builtin_alloca (b);
}