aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/gimple-fold.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.9/gcc/gimple-fold.c')
-rw-r--r--gcc-4.9/gcc/gimple-fold.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc-4.9/gcc/gimple-fold.c b/gcc-4.9/gcc/gimple-fold.c
index ab38bde7c..35feeccad 100644
--- a/gcc-4.9/gcc/gimple-fold.c
+++ b/gcc-4.9/gcc/gimple-fold.c
@@ -148,7 +148,8 @@ can_refer_decl_in_current_unit_p (tree decl, tree from_decl)
The second is important when devirtualization happens during final
compilation stage when making a new reference no longer makes callee
to be compiled. */
- if (!node || !node->definition || node->global.inlined_to)
+ if (!node || !node->definition
+ || DECL_EXTERNAL (decl) || node->global.inlined_to)
{
gcc_checking_assert (!TREE_ASM_WRITTEN (decl));
return false;