Small ChangeLog tweak.
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr44050.c
blob931eff6ff2c2a9ad3d848d52f27e6efa7fe647ad
1 /* { dg-do run } */
2 /* { dg-options "-fno-tree-pta" } */
4 static void __attribute__((noinline))
5 foo (int *i, int n)
7 *i = n;
10 int
11 main (void)
13 int i = 0;
14 foo (&i, 1);
16 if (i != 1)
17 __builtin_abort ();
19 return 0;