Commit 159e1f84 by Richard Kenner

(dbxout_type): The "base type" of a SET_TYPE is its DOMAIN_TYPE, not

its TREE_TYPE.

From-SVN: r6209
parent 9b1674a8
......@@ -1100,7 +1100,7 @@ dbxout_type (type, full, show_arg_types)
case SET_TYPE:
putc ('S', asmfile);
CHARS (1);
dbxout_type (TREE_TYPE (type), 0, 0);
dbxout_type (TYPE_DOMAIN (type), 0, 0);
break;
case ARRAY_TYPE:
......
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