diff options
author | Richard Stallman <rms@gnu.org> | 1993-05-28 23:14:31 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1993-05-28 23:14:31 +0000 |
commit | 3f9bafd70e18a52488109e667b91039d8a84f68d (patch) | |
tree | a9876aca56441be87b3f5e3efb178ec0b4403238 /gcc | |
parent | c648ab8a1a389833a4985c972e783649efe27328 (diff) | |
download | gcc-3f9bafd70e18a52488109e667b91039d8a84f68d.zip gcc-3f9bafd70e18a52488109e667b91039d8a84f68d.tar.gz gcc-3f9bafd70e18a52488109e667b91039d8a84f68d.tar.bz2 |
(dbxout_type): Add missing `;' for array with no domain.
From-SVN: r4589
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/dbxout.c | 6 |
1 files 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); |