Commit d0310c53 by Per Bothner

(dbxout_range_type): Handle an array range that is neither int nor subrange.

From-SVN: r7494
parent f0e01782
......@@ -877,6 +877,8 @@ dbxout_range_type (type)
fprintf (asmfile, "r");
if (TREE_TYPE (type))
dbxout_type (TREE_TYPE (type), 0, 0);
else if (TREE_CODE (type) != INTEGER_TYPE)
dbxout_type (type, 0, 0); /* E.g. Pascal's ARRAY [BOOLEAN] of INTEGER */
else
{
/* This used to say `r1' and we used to take care
......
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