2017-11-15 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gcc.dg / ipa / pr57358.c
blobc83396f4c0bd1e833dc937dfac88d742f3b79b20
1 /* { dg-do compile } */
2 /* { dg-options "-O2" } */
4 struct t { void (*func)(void*); };
5 void test_func(struct t* a) __attribute__((optimize("O0")));
6 void test_func(struct t* a)
8 a->func(0);