aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/pr37056.c
blob: f9285e2c78438809d9b131a220e65f9d8185920e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
extern void abort (void);

static union {
    char buf[12 * sizeof (long long)];
} u;

int main ()
{
  int off, len, i;
  char *p, *q;

  for (off = 0; off < (sizeof (long long)); off++)
    for (len = 1; len < (10 * sizeof (long long)); len++)
      {
	for (i = 0; i < (12 * sizeof (long long)); i++)
	  u.buf[i] = 'a';
	p = (__extension__ (__builtin_constant_p ('\0') && ('\0') == '\0'
			    ? ({void *__s = (u.buf + off); __s;})
			    : __builtin_memset (u.buf + off, '\0', len)));
	if (p != u.buf + off)
	  abort ();
	for (i = 0; i < off; i++, q++)
	  if (*q != 'a')
	    abort ();
      }
  return 0;
}