Skip to content

Commit cdd58c4

Browse files
committed
objcxx_eh.h: Remove weak attribute
1 parent 015e7ce commit cdd58c4

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

objcxx_eh.h

-5
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ extern "C" {
1414
#undef CXA_ALLOCATE_EXCEPTION_SPECIFIER
1515
#define CXA_ALLOCATE_EXCEPTION_SPECIFIER
1616
#endif
17-
__attribute__((weak))
1817
void *__cxa_allocate_exception(size_t thrown_size) CXA_ALLOCATE_EXCEPTION_SPECIFIER;
1918

2019
/**
@@ -23,7 +22,6 @@ void *__cxa_allocate_exception(size_t thrown_size) CXA_ALLOCATE_EXCEPTION_SPECIF
2322
* _Unwind_Exception structure within this structure, and should be passed to
2423
* the C++ personality function.
2524
*/
26-
__attribute__((weak))
2725
struct _Unwind_Exception *objc_init_cxx_exception(id thrown_exception);
2826
/**
2927
* The GNU C++ exception personality function, provided by libsupc++ (GNU) or
@@ -34,21 +32,18 @@ __attribute__((weak)) DECLARE_PERSONALITY_FUNCTION(__gxx_personality_v0);
3432
* Frees an exception object allocated by __cxa_allocate_exception(). Part of
3533
* the Itanium C++ ABI.
3634
*/
37-
__attribute__((weak))
3835
void __cxa_free_exception(void *thrown_exception);
3936
/**
4037
* Tests whether a C++ exception contains an Objective-C object, and returns if
4138
* if it does. The second argument is a pointer to a boolean value indicating
4239
* whether this is a valid object.
4340
*/
44-
__attribute__((weak))
4541
void *objc_object_for_cxx_exception(void *thrown_exception, int *isValid);
4642

4743
/**
4844
* Prints the type info associated with an exception. Used only when
4945
* debugging, not compiled in the normal build.
5046
*/
51-
__attribute__((weak))
5247
void print_type_info(void *thrown_exception);
5348

5449
/**

0 commit comments

Comments
 (0)