tcctest: switch weak_toolate proto with impl
gcc -O0 didn't like this.
This commit is contained in:
parent
f115c12346
commit
5e5e29f8fd
1 changed files with 1 additions and 1 deletions
|
@ -2449,8 +2449,8 @@ 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));
|
||||
int weak_toolate() { return 0; }
|
||||
|
||||
void __attribute__((weak)) weak_test(void)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue