use new weaken_symbol() to fix another real-world corner case
This commit is contained in:
@ -2374,6 +2374,9 @@ int some_lib_func(void);
|
||||
|
||||
int some_lib_func(void);
|
||||
int dummy_impl_of_slf(void) { return 444; }
|
||||
int some_lib_func(void) __attribute__((weak, alias("dummy_impl_of_slf")));
|
||||
|
||||
int weak_toolate() { return 0; }
|
||||
int weak_toolate() __attribute__((weak));
|
||||
|
||||
void __attribute__((weak)) weak_test(void)
|
||||
|
||||
Reference in New Issue
Block a user