From 3f9bafd70e18a52488109e667b91039d8a84f68d Mon Sep 17 00:00:00 2001 From: Richard Stallman Date: Fri, 28 May 1993 23:14:31 +0000 Subject: [PATCH] (dbxout_type): Add missing `;' for array with no domain. From-SVN: r4589 --- gcc/dbxout.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gcc/dbxout.c b/gcc/dbxout.c index b55b798..4b9f2e8 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); -- 2.7.4