diff options
author | Paolo Carlini <paolo.carlini@oracle.com> | 2011-12-12 17:34:19 +0000 |
---|---|---|
committer | Paolo Carlini <paolo@gcc.gnu.org> | 2011-12-12 17:34:19 +0000 |
commit | 60f3dad78ddb531ee3d2f6ef522ea8c0763aed47 (patch) | |
tree | a584bd100b0e0b16b30cfe4412bd40c3752cd24e /libstdc++-v3/config | |
parent | 7252b079fc845799699196473b008d856ae630b6 (diff) | |
download | gcc-60f3dad78ddb531ee3d2f6ef522ea8c0763aed47.tar.gz |
revert: re PR target/51135 (SIGSEGV during exception cleanup on win32)
2011-12-12 Paolo Carlini <paolo.carlini@oracle.com>
Revert:
2011-12-12 Kai Tietz <ktietz@redhat.com>
PR libstdc++/51135
* libsupc++/cxxabi.h (__cxa_dtor_type): New type.
(__cxa_throw): Use it for destructor-argument.
* libsupc++/eh_throw.cc (__cxa_throw): Likewise.
* libsupc++/unwind-cxx.h (__cxa_exception): Change type of member
exceptionDestructor to __cxa_dtor_type.
* config/os/mingw32-w64/os_defines.h (_GLIBCXX_USE_THISCALL_ON_DTOR):
Define.
(__cxa_dtor_type): Declare target secific type variant.
* config/os/mingw32/os_defines.h: Likewise.
From-SVN: r182250
Diffstat (limited to 'libstdc++-v3/config')
-rw-r--r-- | libstdc++-v3/config/os/mingw32-w64/os_defines.h | 8 | ||||
-rw-r--r-- | libstdc++-v3/config/os/mingw32/os_defines.h | 8 |
2 files changed, 0 insertions, 16 deletions
diff --git a/libstdc++-v3/config/os/mingw32-w64/os_defines.h b/libstdc++-v3/config/os/mingw32-w64/os_defines.h index b612d06fd7a..160c1ffda58 100644 --- a/libstdc++-v3/config/os/mingw32-w64/os_defines.h +++ b/libstdc++-v3/config/os/mingw32-w64/os_defines.h @@ -65,12 +65,4 @@ // ioctlsocket function doesn't work for normal file-descriptors. #define _GLIBCXX_NO_IOCTL 1 -// See libstdc++/51135 -// Class constructors/destructors have __thiscall calling-convention -// for IA 32-bit target. -#if defined (__i386__) -#define _GLIBCXX_USE_THISCALL_ON_DTOR 1 -typedef void (__thiscall *__cxa_dtor_type) (void *); -#endif - #endif diff --git a/libstdc++-v3/config/os/mingw32/os_defines.h b/libstdc++-v3/config/os/mingw32/os_defines.h index b612d06fd7a..160c1ffda58 100644 --- a/libstdc++-v3/config/os/mingw32/os_defines.h +++ b/libstdc++-v3/config/os/mingw32/os_defines.h @@ -65,12 +65,4 @@ // ioctlsocket function doesn't work for normal file-descriptors. #define _GLIBCXX_NO_IOCTL 1 -// See libstdc++/51135 -// Class constructors/destructors have __thiscall calling-convention -// for IA 32-bit target. -#if defined (__i386__) -#define _GLIBCXX_USE_THISCALL_ON_DTOR 1 -typedef void (__thiscall *__cxa_dtor_type) (void *); -#endif - #endif |