diff options
Diffstat (limited to 'gcc/dwarf2out.c')
-rw-r--r-- | gcc/dwarf2out.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gcc/dwarf2out.c b/gcc/dwarf2out.c index 7c930746e7b..b38243f91d5 100644 --- a/gcc/dwarf2out.c +++ b/gcc/dwarf2out.c @@ -13611,7 +13611,9 @@ secname_for_decl (const_tree decl) { const char *secname; - if (VAR_OR_FUNCTION_DECL_P (decl) && DECL_SECTION_NAME (decl)) + if (VAR_OR_FUNCTION_DECL_P (decl) + && (DECL_EXTERNAL (decl) || TREE_PUBLIC (decl) || TREE_STATIC (decl)) + && DECL_SECTION_NAME (decl)) { tree sectree = DECL_SECTION_NAME (decl); secname = TREE_STRING_POINTER (sectree); |