diff options
author | Michael Meissner <meissner@cygnus.com> | 1998-03-25 13:17:37 +0000 |
---|---|---|
committer | Michael Meissner <meissner@gcc.gnu.org> | 1998-03-25 13:17:37 +0000 |
commit | c4d38ccb5503a83780195612df44b2927e187e6a (patch) | |
tree | 3457945541aaabd9c1d04c7bbf59ee53bc6c20fa /gcc/dbxout.c | |
parent | c440840d77ac8134f0d1a63cbbe286fc1bb76e6d (diff) | |
download | gcc-c4d38ccb5503a83780195612df44b2927e187e6a.zip gcc-c4d38ccb5503a83780195612df44b2927e187e6a.tar.gz gcc-c4d38ccb5503a83780195612df44b2927e187e6a.tar.bz2 |
Fix warnings from Kaveh R. Ghazi
From-SVN: r18826
Diffstat (limited to 'gcc/dbxout.c')
-rw-r--r-- | gcc/dbxout.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/gcc/dbxout.c b/gcc/dbxout.c index dffbd19..231f003 100644 --- a/gcc/dbxout.c +++ b/gcc/dbxout.c @@ -646,7 +646,9 @@ dbxout_type_fields (type) /* Continue the line if necessary, but not before the first field. */ if (tem != TYPE_FIELDS (type)) - CONTIN; + { + CONTIN; + } if (use_gnu_debug_info_extensions && flag_minimal_debug @@ -1427,7 +1429,9 @@ dbxout_type (type, full, show_arg_types) fprintf (asmfile, ","); CHARS (20 + IDENTIFIER_LENGTH (TREE_PURPOSE (tem))); if (TREE_CHAIN (tem) != 0) - CONTIN; + { + CONTIN; + } } putc (';', asmfile); CHARS (1); |