OSDN Git Service

Fix misapplied patch.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.c-torture / compile / pr28776-1.c
1 typedef struct dw_fde_struct
2 {
3   int decl;
4 } *dw_fde_ref;
5 dw_fde_ref fde_table;
6 unsigned fde_table_in_use;
7 void output_call_frame_info (void)
8 {
9   unsigned int i;
10   dw_fde_ref fde;
11   for (i = 0; i < fde_table_in_use; i++)
12     {
13       fde = &fde_table[i];
14       tree_contains_struct_check_failed (fde_table[i].decl);
15     }
16 }