Commit 71b54b53 by Per Bothner

(dbxout_type): Write non-default precision of of ENUMERAL_TYPEs.

From-SVN: r7315
parent bc29e2ad
......@@ -1298,6 +1298,9 @@ dbxout_type (type, full, show_arg_types)
#ifdef DBX_OUTPUT_ENUM
DBX_OUTPUT_ENUM (asmfile, type);
#else
if (use_gnu_debug_info_extensions
&& TYPE_PRECISION (type) != TYPE_PRECISION (integer_type_node))
fprintf (asmfile, "@s%d;", TYPE_PRECISION (type));
putc ('e', asmfile);
CHARS (1);
for (tem = TYPE_VALUES (type); tem; tem = TREE_CHAIN (tem))
......
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