From f51af6c9cd5b3ffb3cce3dc3a5d60e500669d063 Mon Sep 17 00:00:00 2001 From: Saleem Abdulrasool Date: Wed, 11 May 2016 23:56:37 +0000 Subject: [PATCH] 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. llvm-svn: 269255 --- libcxxabi/src/cxa_personality.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libcxxabi/src/cxa_personality.cpp b/libcxxabi/src/cxa_personality.cpp index f3e0aeb53ebc..85b6df2393a0 100644 --- a/libcxxabi/src/cxa_personality.cpp +++ b/libcxxabi/src/cxa_personality.cpp @@ -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);