* tree-loop-distribution.c (struct partition): New field recording
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / pr43635.c
blobdf826b6f4c0f12964e1500a8f0df10f46ca2fc4f
1 /* { dg-require-effective-target untyped_assembly } */
2 extern void d (void);
4 void (*foo (void)) (float)
6 void (*(*x) (void)) (float) = d;
7 return (*x) ();