[PR55641] drop spurious const_type from reference_type variables
authorAlexandre Oliva <aoliva@redhat.com>
Fri, 12 Aug 2016 07:11:36 +0000 (07:11 +0000)
committerAlexandre Oliva <aoliva@gcc.gnu.org>
Fri, 12 Aug 2016 07:11:36 +0000 (07:11 +0000)
commit71e1a6a4c799e27be77f593c82b1575e094ea548
tree4cbe33f6735cc7602988194ca2515c67d921361d
parent8aaf799b005461231d75f0889e3c78bd9b35eed9
[PR55641] drop spurious const_type from reference_type variables

Although C++ reference types, denoted by DW_TAG_reference_type in
DWARFv2+ debug info, are unchangeable, we output names of reference type
with DW_TAG_const_type, because internally we mark such variables as
TREE_READONLY.  That's an internal implementation detail that shouldn't
leak to debug information.  This patch fixes this.

for  gcc/ChangeLog

PR debug/55641
* dwarf2out.c (decl_quals): Don't map TREE_READONLY to
TYPE_QUAL_CONST in reference-typed decls.

for  gcc/testsuite/ChangeLog

PR debug/55641
* g++.dg/debug/dwarf2/ref-1.C: New.

From-SVN: r239402
gcc/ChangeLog
gcc/dwarf2out.c
gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/debug/dwarf2/ref-1.C [new file with mode: 0644]