Implement C _FloatN, _FloatNx types.
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr24626-3.c
blob41decabfacfae7c5713a725d633548055da50133
1 /* { dg-do compile } */
3 long fff(int*);
4 void T(int*);
6 long F2(int *node)
8 long call_result = 0;
10 if (call_result = fff(node))
11 goto error_free_node;
13 T(node);
14 return 0;
16 error_free_node:
17 T(node);
18 return call_result;