PR lto/84212 - -Wno-* does not disable warnings from -flto link stage
[official-gcc.git] / gcc / testsuite / g++.dg / warn / Wsizeof-pointer-memaccess-1.C
blob18aa90bede46e1ad3c0061fca0c422eb2d1e6439
1 // Test -Wsizeof-pointer-memaccess warnings.
2 // { dg-do compile }
3 // { dg-options "-Wall -Wno-sizeof-array-argument" }
4 // { dg-require-effective-target alloca }
6 typedef __SIZE_TYPE__ size_t;
7 extern "C" void *memset (void *, int, size_t);
9 int
10 foo (int x, char b[10])
12   long a[memset (b, 0, sizeof (b)) ? x + 10 : x];       // { dg-warning "call is the same expression as the destination; did you mean to provide an explicit length?" }
13   return a[0];