From: Martin Liska Date: Wed, 29 Aug 2018 10:48:50 +0000 (+0200) Subject: Fix thinko in lto.c (PR bootstrap/87130). X-Git-Tag: upstream/12.2.0~29509 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9ed6dbeeb285a010d4ab1e437cf4e2f7136dcc17;p=platform%2Fupstream%2Fgcc.git Fix thinko in lto.c (PR bootstrap/87130). 2018-08-29 Martin Liska PR bootstrap/87130 * lto.c (read_cgraph_and_symbols): Fix thinko, revert to behavior before r263887. From-SVN: r263950 --- diff --git a/gcc/lto/ChangeLog b/gcc/lto/ChangeLog index e0bd7c1..f997f03 100644 --- a/gcc/lto/ChangeLog +++ b/gcc/lto/ChangeLog @@ -1,3 +1,9 @@ +2018-08-29 Martin Liska + + PR bootstrap/87130 + * lto.c (read_cgraph_and_symbols): Fix thinko, revert + to behavior before r263887. + 2018-08-27 Martin Liska * lto-lang.c (handle_const_attribute): Use new function diff --git a/gcc/lto/lto.c b/gcc/lto/lto.c index 5b92bee..598492d 100644 --- a/gcc/lto/lto.c +++ b/gcc/lto/lto.c @@ -2923,8 +2923,8 @@ read_cgraph_and_symbols (unsigned nfiles, const char **fnames) FOR_EACH_SYMBOL (snode) if (snode->externally_visible && snode->real_symbol_p () && snode->lto_file_data && snode->lto_file_data->resolution_map - && !(TREE_CODE (snode->decl) != FUNCTION_DECL - || fndecl_built_in_p (snode->decl)) + && !(TREE_CODE (snode->decl) == FUNCTION_DECL + && fndecl_built_in_p (snode->decl)) && !(VAR_P (snode->decl) && DECL_HARD_REGISTER (snode->decl))) { ld_plugin_symbol_resolution_t *res;