Commit 6c73937e by Per Bothner

dbxout.c (dbxout_range_type): If the range has a base type (TREE_TYPE)...

* dbxout.c (dbxout_range_type):  If the range has a base type
(TREE_TYPE), emit it, even if that is some other integer type.

From-SVN: r6386
parent 8e871c05
......@@ -865,7 +865,7 @@ dbxout_range_type (type)
tree type;
{
fprintf (asmfile, "r");
if (TREE_TYPE (type) && TREE_CODE (TREE_TYPE(type)) != INTEGER_TYPE)
if (TREE_TYPE (type))
dbxout_type (TREE_TYPE (type), 0, 0);
else
{
......
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