OSDN Git Service

2010-05-02 Richard Guenther <rguenther@suse.de>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / torture / pr24626-3.c
1 /* { dg-do compile } */
2
3 long fff(int*);
4
5 long F2(int *node)
6 {
7  long call_result = 0;
8
9  if (call_result = fff(node))
10   goto error_free_node;
11
12  T(node);
13  return 0;
14
15 error_free_node:
16  T(node);
17  return call_result;
18 }