Small ChangeLog tweak.
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr47426-2.c
bloba22e902bce450d1b876771b797c549bc36ebe298
1 typedef void tfoo (int *);
2 tfoo *getfoo (void);
4 void
5 bar (int *i)
7 (*i)--;
10 int
11 main ()
13 int i = 1;
14 getfoo ()(&i);
15 if (i)
16 __builtin_abort ();
17 return 0;