diff options
author | Mike Stump <mrs@gcc.gnu.org> | 1992-05-12 03:30:55 +0000 |
---|---|---|
committer | Mike Stump <mrs@gcc.gnu.org> | 1992-05-12 03:30:55 +0000 |
commit | 52a73899c09cc8c9083e1a4c94154c34b94b709a (patch) | |
tree | 531e9143799d94763418c5d6d17a35fa16fd86e5 | |
parent | bfa30b22c7637187d60bc8a85ec3fee005fccbc4 (diff) | |
download | gcc-52a73899c09cc8c9083e1a4c94154c34b94b709a.zip gcc-52a73899c09cc8c9083e1a4c94154c34b94b709a.tar.gz gcc-52a73899c09cc8c9083e1a4c94154c34b94b709a.tar.bz2 |
*** empty log message ***
From-SVN: r962
-rw-r--r-- | gcc/dbxout.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/gcc/dbxout.c b/gcc/dbxout.c index 49789ae..3295799 100644 --- a/gcc/dbxout.c +++ b/gcc/dbxout.c @@ -781,8 +781,11 @@ dbxout_type_methods (type) dbxout_type_method_1 (fndecl, debug_name); } - putc (';', asmfile); - CHARS (1); + if (!need_prefix) + { + putc (';', asmfile); + CHARS (1); + } } } |