middle-end: check explicitly for external or constants when checking for loop invaria...
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / pr28776-1.c
blobc55bd483a30cb412ed3d2bca61ccda00249799df
1 typedef struct dw_fde_struct
3 int decl;
4 } *dw_fde_ref;
5 dw_fde_ref fde_table;
6 unsigned fde_table_in_use;
7 void tree_contains_struct_check_failed (int);
8 void output_call_frame_info (void)
10 unsigned int i;
11 dw_fde_ref fde;
12 for (i = 0; i < fde_table_in_use; i++)
14 fde = &fde_table[i];
15 tree_contains_struct_check_failed (fde_table[i].decl);