Small ChangeLog tweak.
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr51692.c
blob34a81c29de127295b4dca2f046ddd0502ea0c646
1 /* { dg-do compile } */
3 int
4 main ()
6 volatile double d = 0.0;
7 double *p = __builtin_calloc (1, sizeof (double));
8 d += 1.0;
9 *p += 2.0;
10 __builtin_free (p);
11 return 0;