[libcxxabi] r269255 - libc++abi: make __cxa_call_unexpected visible

Saleem Abdulrasool via cfe-commits cfe-commits at lists.llvm.org
Wed May 11 16:56:38 PDT 2016


Author: compnerd
Date: Wed May 11 18:56:37 2016
New Revision: 269255

URL: http://llvm.org/viewvc/llvm-project?rev=269255&view=rev
Log:
libc++abi: make __cxa_call_unexpected visible

This may be invoked by the compiler, and needs to be made available so that the
users can reference it.

Modified:
    libcxxabi/trunk/src/cxa_personality.cpp

Modified: libcxxabi/trunk/src/cxa_personality.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxxabi/trunk/src/cxa_personality.cpp?rev=269255&r1=269254&r2=269255&view=diff
==============================================================================
--- libcxxabi/trunk/src/cxa_personality.cpp (original)
+++ libcxxabi/trunk/src/cxa_personality.cpp Wed May 11 18:56:37 2016
@@ -1166,7 +1166,7 @@ __gxx_personality_v0(_Unwind_State state
 
 
 __attribute__((noreturn))
-void
+_LIBCXXABI_FUNC_VIS void
 __cxa_call_unexpected(void* arg)
 {
     _Unwind_Exception* unwind_exception = static_cast<_Unwind_Exception*>(arg);




More information about the cfe-commits mailing list