From 35bd8e8fb68675f42f407cf47b2e8df1cd0110e2 Mon Sep 17 00:00:00 2001 From: Jan Hubicka Date: Thu, 10 Dec 2015 20:21:31 +0100 Subject: [PATCH] * lto-streamer-out.c (wrap_refs): Only wrap public decls. From-SVN: r231541 --- gcc/ChangeLog | 4 ++++ gcc/lto-streamer-out.c | 3 ++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index fb1cb06a7f4..056b7abcb00 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2015-12-10 Jan Hubicka + + * lto-streamer-out.c (wrap_refs): Only wrap public decls. + 2015-12-10 Jan Hubicka * ipa-cp.c (ipcp_cloning_candidate_p): Use node->optimize_for_size_p. diff --git a/gcc/lto-streamer-out.c b/gcc/lto-streamer-out.c index a8748464c21..5524f84dc06 100644 --- a/gcc/lto-streamer-out.c +++ b/gcc/lto-streamer-out.c @@ -2236,7 +2236,8 @@ wrap_refs (tree *tp, int *ws, void *) { tree t = *tp; if (handled_component_p (t) - && TREE_CODE (TREE_OPERAND (t, 0)) == VAR_DECL) + && TREE_CODE (TREE_OPERAND (t, 0)) == VAR_DECL + && TREE_PUBLIC (TREE_OPERAND (t, 0))) { tree decl = TREE_OPERAND (t, 0); tree ptrtype = build_pointer_type (TREE_TYPE (decl)); -- 2.30.2