svn commit: r245743 - vendor/libcxxrt/dist

David Chisnall theraven at FreeBSD.org
Mon Jan 21 17:31:12 UTC 2013


Author: theraven
Date: Mon Jan 21 17:31:12 2013
New Revision: 245743
URL: http://svnweb.freebsd.org/changeset/base/245743

Log:
  Imported new libcxxrt (one-line fix).

Modified:
  vendor/libcxxrt/dist/exception.cc

Modified: vendor/libcxxrt/dist/exception.cc
==============================================================================
--- vendor/libcxxrt/dist/exception.cc	Mon Jan 21 14:06:33 2013	(r245742)
+++ vendor/libcxxrt/dist/exception.cc	Mon Jan 21 17:31:12 2013	(r245743)
@@ -801,7 +801,7 @@ extern "C" void __cxa_decrement_exceptio
  */
 extern "C" void __cxa_rethrow()
 {
-	__cxa_thread_info *ti = thread_info_fast();
+	__cxa_thread_info *ti = thread_info();
 	__cxa_eh_globals *globals = &ti->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


More information about the svn-src-all mailing list