* asan.c (handle_builtin_alloca): Deal with all alloca variants.
[official-gcc.git] / gcc / testsuite / gcc.dg / Walloca-15.c
blobf34ffd98b617d4ed87caea013dd28eaeef84a099
1 /* { dg-do compile } */
2 /* { dg-require-effective-target alloca } */
3 /* { dg-options "-Walloca-larger-than=128 -O2" } */
5 typedef __SIZE_TYPE__ size_t;
7 void bar (void*);
9 void foo1 (size_t len)
11 bar (__builtin_alloca_with_align_and_max (len, 8, 128));
14 void foo2 (size_t len)
16 bar (__builtin_alloca_with_align_and_max (len, 8, 256)); /* { dg-warning "may be too large" } */