aboutsummaryrefslogtreecommitdiff
path: root/gcc/dwarf2out.c
diff options
context:
space:
mode:
authorRichard Biener <rguenther@suse.de>2018-03-01 13:39:56 +0000
committerRichard Biener <rguenth@gcc.gnu.org>2018-03-01 13:39:56 +0000
commitb476f5dd5d5aef9b150ad5d71dc46fd0b6207f73 (patch)
tree941783a864848aca2b46b958ef5b645b933600de /gcc/dwarf2out.c
parent523036d4dcd25b8c0fe619b2e76a3795931e74ba (diff)
downloadgcc-b476f5dd5d5aef9b150ad5d71dc46fd0b6207f73.zip
gcc-b476f5dd5d5aef9b150ad5d71dc46fd0b6207f73.tar.gz
gcc-b476f5dd5d5aef9b150ad5d71dc46fd0b6207f73.tar.bz2
re PR debug/84645 (-flto -g0 at compile-time vs. -flto -g at link time ICEs in add_dwarf_attr, at dwarf2out.c:4353)
2018-03-01 Richard Biener <rguenther@suse.de> PR debug/84645 * dwarf2out.c (gen_variable_die): Properly handle late VLA type annotation with LTO when debug was disabled at compile-time. * gfortran.dg/lto/pr84645_0.f90: New testcase. From-SVN: r258100
Diffstat (limited to 'gcc/dwarf2out.c')
-rw-r--r--gcc/dwarf2out.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/gcc/dwarf2out.c b/gcc/dwarf2out.c
index 5e88c7b..41bb115 100644
--- a/gcc/dwarf2out.c
+++ b/gcc/dwarf2out.c
@@ -23527,10 +23527,12 @@ gen_variable_die (tree decl, tree origin, dw_die_ref context_die)
/* ??? In LTRANS we cannot annotate early created variably
modified type DIEs without copying them and adjusting all
- references to them. Thus we dumped them again, also add a
- reference to them. */
+ references to them. Thus we dumped them again. Also add a
+ reference to them but beware of -g0 compile and -g link
+ in which case the reference will be already present. */
tree type = TREE_TYPE (decl_or_origin);
if (in_lto_p
+ && ! get_AT (var_die, DW_AT_type)
&& variably_modified_type_p
(type, decl_function_context (decl_or_origin)))
{