Commit 3f9bafd7 by Richard Stallman

(dbxout_type): Add missing `;' for array with no domain.

From-SVN: r4589
parent c648ab8a
...@@ -1082,11 +1082,11 @@ dbxout_type (type, full, show_arg_types) ...@@ -1082,11 +1082,11 @@ dbxout_type (type, full, show_arg_types)
ar1;0;N;M for a C array of type M and size N+1. */ ar1;0;N;M for a C array of type M and size N+1. */
tem = TYPE_DOMAIN (type); tem = TYPE_DOMAIN (type);
if (tem == NULL) if (tem == NULL)
fprintf(asmfile, "ar%d;0;-1", fprintf (asmfile, "ar%d;0;-1;",
TYPE_SYMTAB_ADDRESS (integer_type_node)); TYPE_SYMTAB_ADDRESS (integer_type_node));
else else
{ {
fprintf(asmfile, "a"); fprintf (asmfile, "a");
dbxout_range_type (tem); dbxout_range_type (tem);
} }
CHARS (17); CHARS (17);
......
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