From: Richard Stallman Date: Fri, 28 May 1993 23:14:31 +0000 (+0000) Subject: (dbxout_type): Add missing `;' for array with no domain. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3f9bafd70e18a52488109e667b91039d8a84f68d;p=gcc.git (dbxout_type): Add missing `;' for array with no domain. From-SVN: r4589 --- diff --git a/gcc/dbxout.c b/gcc/dbxout.c index b55b7987ca8..4b9f2e88814 100644 --- a/gcc/dbxout.c +++ b/gcc/dbxout.c @@ -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. */ tem = TYPE_DOMAIN (type); if (tem == NULL) - fprintf(asmfile, "ar%d;0;-1", - TYPE_SYMTAB_ADDRESS (integer_type_node)); + fprintf (asmfile, "ar%d;0;-1;", + TYPE_SYMTAB_ADDRESS (integer_type_node)); else { - fprintf(asmfile, "a"); + fprintf (asmfile, "a"); dbxout_range_type (tem); } CHARS (17);