Implement C _FloatN, _FloatNx types.
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr48098.c
blobcd72939374fac61fcf4d2177b428113cb36c37e2
1 /* { dg-do compile } */
3 void
4 foo (int n)
6 static char *__restrict *p;
7 int i;
8 p = __builtin_malloc (n);
9 for (i = 0; i < n; i++)
10 p[i] = 0;