Commit 1cda61fc by Jakub Jelinek Committed by Jakub Jelinek

re PR debug/80263 (gcc's internal type "sizetype" leaks out as base type name in the DWARF info)

	PR debug/80263
	* dwarf2out.c (modified_type_die): Try harder not to emit internal
	sizetype type into debug info.

	* gcc.dg/debug/dwarf2/pr80263.c: New test.

From-SVN: r246973
parent 19970253
2017-04-18 Jakub Jelinek <jakub@redhat.com>
PR debug/80263
* dwarf2out.c (modified_type_die): Try harder not to emit internal
sizetype type into debug info.
2017-04-18 Michael Meissner <meissner@linux.vnet.ibm.com> 2017-04-18 Michael Meissner <meissner@linux.vnet.ibm.com>
PR target/80099 PR target/80099
......
...@@ -12464,20 +12464,29 @@ modified_type_die (tree type, int cv_quals, bool reverse, ...@@ -12464,20 +12464,29 @@ modified_type_die (tree type, int cv_quals, bool reverse,
this type. */ this type. */
qualified_type = get_qualified_type (type, cv_quals); qualified_type = get_qualified_type (type, cv_quals);
if (qualified_type == sizetype if (qualified_type == sizetype)
&& TYPE_NAME (qualified_type)
&& TREE_CODE (TYPE_NAME (qualified_type)) == TYPE_DECL)
{ {
tree t = TREE_TYPE (TYPE_NAME (qualified_type)); /* Try not to expose the internal sizetype type's name. */
if (TYPE_NAME (qualified_type)
&& TREE_CODE (TYPE_NAME (qualified_type)) == TYPE_DECL)
{
tree t = TREE_TYPE (TYPE_NAME (qualified_type));
gcc_checking_assert (TREE_CODE (t) == INTEGER_TYPE gcc_checking_assert (TREE_CODE (t) == INTEGER_TYPE
&& TYPE_PRECISION (t) && (TYPE_PRECISION (t)
== TYPE_PRECISION (qualified_type) == TYPE_PRECISION (qualified_type))
&& TYPE_UNSIGNED (t) && (TYPE_UNSIGNED (t)
== TYPE_UNSIGNED (qualified_type)); == TYPE_UNSIGNED (qualified_type)));
qualified_type = t; qualified_type = t;
}
else if (qualified_type == sizetype
&& TREE_CODE (sizetype) == TREE_CODE (size_type_node)
&& TYPE_PRECISION (sizetype) == TYPE_PRECISION (size_type_node)
&& TYPE_UNSIGNED (sizetype) == TYPE_UNSIGNED (size_type_node))
qualified_type = size_type_node;
} }
/* If we do, then we can just use its DIE, if it exists. */ /* If we do, then we can just use its DIE, if it exists. */
if (qualified_type) if (qualified_type)
{ {
......
2017-04-18 Jakub Jelinek <jakub@redhat.com>
PR debug/80263
* gcc.dg/debug/dwarf2/pr80263.c: New test.
2017-04-18 Michael Meissner <meissner@linux.vnet.ibm.com> 2017-04-18 Michael Meissner <meissner@linux.vnet.ibm.com>
PR target/80099 PR target/80099
......
/* PR debug/80263 */
/* { dg-do compile } */
/* { dg-options "-g -dA" } */
char array[1];
/* { dg-final { scan-assembler-not {\msizetype} } } */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment