diff options
| author | Mark Mitchell <mark@codesourcery.com> | 2000-06-08 17:35:44 +0000 |
|---|---|---|
| committer | Mark Mitchell <mmitchel@gcc.gnu.org> | 2000-06-08 17:35:44 +0000 |
| commit | 16b72afedd80e27cdd507ef17922a9dd65915893 (patch) | |
| tree | b24366a475050e92331bd6a312993db02166fd10 /libio/stdstrbufs.cc | |
| parent | 657c130a99d42441051b68f1640410629a78dd0b (diff) | |
| download | gcc-16b72afedd80e27cdd507ef17922a9dd65915893.zip gcc-16b72afedd80e27cdd507ef17922a9dd65915893.tar.gz gcc-16b72afedd80e27cdd507ef17922a9dd65915893.tar.bz2 | |
libioP.h: Remove old ABI mangling code.
* libioP.h: Remove old ABI mangling code.
* stdstrbufs.cc: Likewise.
From-SVN: r34459
Diffstat (limited to 'libio/stdstrbufs.cc')
| -rw-r--r-- | libio/stdstrbufs.cc | 22 |
1 files changed, 3 insertions, 19 deletions
diff --git a/libio/stdstrbufs.cc b/libio/stdstrbufs.cc index ee10cdc..8b9e375 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 @@ -35,15 +35,7 @@ the executable file might be covered by the GNU General Public License. */ #if !defined(filebuf_vtable) && defined(__cplusplus) #ifdef __GNUC__ extern char filebuf_vtable[] -#if (!defined(__GXX_ABI_VERSION) || __GXX_ABI_VERSION < 100) - asm (_G_VTABLE_LABEL_PREFIX -#if _G_VTABLE_LABEL_HAS_LENGTH - "7" -#endif - "filebuf"); -#else - asm ( "_ZN7filebufTVE" ); -#endif /* (!defined(__GXX_ABI_VERSION) || __GXX_ABI_VERSION < 100) */ + asm ( "_ZTV7filebuf" ); #else /* !__GNUC__ */ #if _G_VTABLE_LABEL_HAS_LENGTH #define filebuf_vtable _G_VTABLE_LABEL_PREFIX_ID##7filebuf @@ -91,15 +83,7 @@ struct _IO_fake_stdiobuf { #ifndef stdiobuf_vtable #ifdef __GNUC__ extern struct _IO_jump_t stdiobuf_vtable -#if (!defined(__GXX_ABI_VERSION) || __GXX_ABI_VERSION < 100) - asm (_G_VTABLE_LABEL_PREFIX -#if _G_VTABLE_LABEL_HAS_LENGTH - "8" -#endif - "stdiobuf"); -#else - asm ( "_ZN15stdiobuf_vtableTVE" ); -#endif /* (!defined(__GXX_ABI_VERSION) || __GXX_ABI_VERSION < 100) */ + asm ( "_ZTV15stdiobuf_vtable" ); #else /* !__GNUC__ */ #if _G_VTABLE_LABEL_HAS_LENGTH #define stdiobuf_vtable _G_VTABLE_LABEL_PREFIX_ID##8stdiobuf |
