aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/lto/20100720-1_1.c
blob: 789e88e7d06943bd961c8b68869e7b35ac330c57 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
struct X {
  int b;
};

typedef struct list_node *list;

struct list_node {
  list next;
  struct X *value;
};

list g(void)
{
  return 0;
}