Fix check for fbt_excluded() in powerpc
fbt_excluded() returns 1 if the symbol is to be excluded. Every other arch has this correct, powerpc was the only broken one MFC after: 1 week
This commit is contained in:
parent
03b856d6f3
commit
0440a7f539
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=318129
@ -127,7 +127,7 @@ fbt_provide_module_function(linker_file_t lf, int symindx,
|
||||
return (0);
|
||||
#endif
|
||||
|
||||
if (fbt_excluded(name) == 0)
|
||||
if (fbt_excluded(name))
|
||||
return (0);
|
||||
|
||||
instr = (uint32_t *) symval->value;
|
||||
|
Loading…
Reference in New Issue
Block a user