diff options
author | Jim Wilson <wilson@gcc.gnu.org> | 1996-02-29 17:41:00 -0800 |
---|---|---|
committer | Jim Wilson <wilson@gcc.gnu.org> | 1996-02-29 17:41:00 -0800 |
commit | 3d0793d589387cc8c33c6a16dd6b33e8c70ca22e (patch) | |
tree | 37af8e381393e39ed14779a2055c7e1d8503c2e0 /gcc/dbxout.c | |
parent | 698cdd84d5f3e7436900fce56844198820c75023 (diff) | |
download | gcc-3d0793d589387cc8c33c6a16dd6b33e8c70ca22e.zip gcc-3d0793d589387cc8c33c6a16dd6b33e8c70ca22e.tar.gz gcc-3d0793d589387cc8c33c6a16dd6b33e8c70ca22e.tar.bz2 |
(dbxout_type, case METHOD_TYPE): Add CHARS (1) call
after emitting second '#' character.
From-SVN: r11390
Diffstat (limited to 'gcc/dbxout.c')
-rw-r--r-- | gcc/dbxout.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/dbxout.c b/gcc/dbxout.c index cb06b16..17c5687 100644 --- a/gcc/dbxout.c +++ b/gcc/dbxout.c @@ -1510,6 +1510,7 @@ dbxout_type (type, full, show_arg_types) /* Normally, just output the return type. The argument types are encoded in the method name. */ putc ('#', asmfile); + CHARS (1); dbxout_type (TREE_TYPE (type), 0, 0); putc (';', asmfile); CHARS (1); |