mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
16 lines
335 B
C
16 lines
335 B
C
![]() |
// SPDX-License-Identifier: GPL-2.0-or-later
|
||
|
#include <objtool/special.h>
|
||
|
|
||
|
bool arch_support_alt_relocation(struct special_alt *special_alt,
|
||
|
struct instruction *insn,
|
||
|
struct reloc *reloc)
|
||
|
{
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
struct reloc *arch_find_switch_table(struct objtool_file *file,
|
||
|
struct instruction *insn)
|
||
|
{
|
||
|
return NULL;
|
||
|
}
|