diff options
| author | Alex Samuel <samuel@gcc.gnu.org> | 2000-06-30 15:25:33 +0000 |
|---|---|---|
| committer | Alex Samuel <samuel@gcc.gnu.org> | 2000-06-30 15:25:33 +0000 |
| commit | bece74bdee6aa7a90fc573f11b27a43231bca007 (patch) | |
| tree | 67c66f46e7f0fe9c54e0629a21c96199e0fae8f7 /libio/stdstrbufs.cc | |
| parent | af80d489916e279bdb3f75ca458b1d323205120f (diff) | |
| download | gcc-bece74bdee6aa7a90fc573f11b27a43231bca007.zip gcc-bece74bdee6aa7a90fc573f11b27a43231bca007.tar.gz gcc-bece74bdee6aa7a90fc573f11b27a43231bca007.tar.bz2 | |
in libiberty/ChangeLog:
* cp-demangle.c (demangle_encoding): Accept no substitutions.
(demangle_name): Handle <substitution> followed by
<unqualified-template-name>.
(demangle_type): Follow special substitutions with
<class-enum-type>
(demangle_subtitution): Set template_p for special substitutions.
(main): Fix typos.
in gcc/cp/ChangeLog:
* mangle.c (find_substitution): Use same_type_p.
(write_encoding): Don't check for substitutions.
in libio/ChangeLog:
* libioP.h (VTABLE_LABEL): Update for new vtable mangling.
* stdstrbufs.cc (filebuf_vtable): Likewise.
(stdiobuf_vtable): Likewise.
From-SVN: r34811
Diffstat (limited to 'libio/stdstrbufs.cc')
| -rw-r--r-- | libio/stdstrbufs.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libio/stdstrbufs.cc b/libio/stdstrbufs.cc index ee10cdc..2425a56 100644 --- a/libio/stdstrbufs.cc +++ b/libio/stdstrbufs.cc @@ -1,5 +1,5 @@ /* -Copyright (C) 1994 Free Software Foundation +Copyright (C) 1994, 2000 Free Software Foundation This file is part of the GNU IO Library. This library is free software; you can redistribute it and/or modify it under the @@ -42,7 +42,7 @@ extern char filebuf_vtable[] #endif "filebuf"); #else - asm ( "_ZN7filebufTVE" ); + asm ( "_ZTV7filebuf" ); #endif /* (!defined(__GXX_ABI_VERSION) || __GXX_ABI_VERSION < 100) */ #else /* !__GNUC__ */ #if _G_VTABLE_LABEL_HAS_LENGTH @@ -98,7 +98,7 @@ extern struct _IO_jump_t stdiobuf_vtable #endif "stdiobuf"); #else - asm ( "_ZN15stdiobuf_vtableTVE" ); + asm ( "_ZTV15stdiobuf_vtable" ); #endif /* (!defined(__GXX_ABI_VERSION) || __GXX_ABI_VERSION < 100) */ #else /* !__GNUC__ */ #if _G_VTABLE_LABEL_HAS_LENGTH |
