Add #ifdef option-test wrappers around another call to an arm/unwind.c

function which is only compiled-in with certain options.

Why is it always the most trivial part of a big commit that takes 3 tries
to get right?
This commit is contained in:
Ian Lepore 2020-01-07 21:13:34 +00:00
parent a9a047bc87
commit 9a1d4b0012
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=356472

View File

@ -337,7 +337,9 @@ int
elf_cpu_unload_file(linker_file_t lf)
{
#if defined(DDB) || defined(KDTRACE_HOOKS) || defined(STACK)
/* Inform the stack(9) code that this module is gone. */
unwind_module_unloaded(lf);
#endif
return (0);
}