aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/warn/Wsizeof-pointer-memaccess-1.C
blob: e2ba8769b9a5a40b9fe8aba930a2f4c900be9991 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Test -Wsizeof-pointer-memaccess warnings.
// { dg-do compile }
// { dg-options "-Wall" }

typedef __SIZE_TYPE__ size_t;
extern "C" void *memset (void *, int, size_t);

int
foo (int x, char b[10])
{
  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?" }
  return a[0];
}