1 // SPDX-License-Identifier: GPL-2.0-or-later
2 #include <objtool/special.h>
3 
arch_support_alt_relocation(struct special_alt * special_alt,struct instruction * insn,struct reloc * reloc)4 bool arch_support_alt_relocation(struct special_alt *special_alt,
5 				 struct instruction *insn,
6 				 struct reloc *reloc)
7 {
8 	return false;
9 }
10 
arch_find_switch_table(struct objtool_file * file,struct instruction * insn,unsigned long * table_size)11 struct reloc *arch_find_switch_table(struct objtool_file *file,
12 				     struct instruction *insn,
13 				     unsigned long *table_size)
14 {
15 	return NULL;
16 }
17