diff options
author | Aditya Kumar <aditya.k7@samsung.com> | 2015-11-19 20:35:12 +0000 |
---|---|---|
committer | Sebastian Pop <spop@gcc.gnu.org> | 2015-11-19 20:35:12 +0000 |
commit | 09b574dda9435d300108fa98e1f5afd873ee9001 (patch) | |
tree | f407dee631fcdb82a0a1aada6d4cd67a367a35c2 /gcc/sese.h | |
parent | 2d25681660450f2c33b653339da158c00155430b (diff) | |
download | gcc-09b574dda9435d300108fa98e1f5afd873ee9001.zip gcc-09b574dda9435d300108fa98e1f5afd873ee9001.tar.gz gcc-09b574dda9435d300108fa98e1f5afd873ee9001.tar.bz2 |
fix bootstrap without ISL on old linkers
With and without this patch passes bootstrap on x86_64-linux with and without ISL.
The problem occurs on systems with older linkers that do not remove dead symbols.
From-SVN: r230625
Diffstat (limited to 'gcc/sese.h')
-rw-r--r-- | gcc/sese.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -236,9 +236,9 @@ typedef struct ifsese_s { extern void if_region_set_false_region (ifsese, sese_info_p); extern ifsese move_sese_in_condition (sese_info_p); +extern void set_ifsese_condition (ifsese, tree); extern edge get_true_edge_from_guard_bb (basic_block); extern edge get_false_edge_from_guard_bb (basic_block); -extern void set_ifsese_condition (ifsese, tree); static inline edge if_region_entry (ifsese if_region) |