summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoranonymous <local@localhost>2011-01-17 14:13:12 +0600
committeranonymous <local@localhost>2011-01-17 14:13:48 +0600
commite30d71b58877d9a29d47100312bb71d86a608ab6 (patch)
tree1f6b5c3177f9e8151e657da70b29c16b301712de
parentcbb9a469a4927a0c9c1a089127a75b4ea3096744 (diff)
downloadlibcxxrt-e30d71b58877d9a29d47100312bb71d86a608ab6.tar.gz
libcxxrt-e30d71b58877d9a29d47100312bb71d86a608ab6.tar.bz2
libcxxrt-e30d71b58877d9a29d47100312bb71d86a608ab6.tar.xz
fix for COMPILER-8941
-rw-r--r--src/exception.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/exception.cc b/src/exception.cc
index 686dba2..cb8e858 100644
--- a/src/exception.cc
+++ b/src/exception.cc
@@ -506,7 +506,7 @@ extern "C" void __cxa_throw(void *thrown_exception,
*/
extern "C" void __cxa_rethrow()
{
- __cxa_eh_globals *globals = __cxa_get_globals_fast();
+ __cxa_eh_globals *globals = __cxa_get_globals();
// Note: We don't remove this from the caught list here, because
// __cxa_end_catch will be called when we unwind out of the try block. We
// could probably make this faster by providing an alternative rethrow