Update ChangeLog and version files for release
[official-gcc.git] / gcc / testsuite / g++.dg / warn / Wsizeof-pointer-memaccess-1.C
blob798cb6de0440de6c479f12bc69f7fc252e4ca4aa
1 // Test -Wsizeof-pointer-memaccess warnings.
2 // { dg-do compile }
3 // { dg-options "-Wall -Wno-sizeof-array-argument" }
5 typedef __SIZE_TYPE__ size_t;
6 extern "C" void *memset (void *, int, size_t);
8 int
9 foo (int x, char b[10])
11   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?" }
12   return a[0];