xref: /linux/tools/objtool/arch/powerpc/special.c (revision 7fc2cd2e4b398c57c9cf961cfea05eadbf34c05c)
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 #include <string.h>
3 #include <stdlib.h>
4 #include <objtool/special.h>
5 #include <objtool/builtin.h>
6 
7 
8 bool arch_support_alt_relocation(struct special_alt *special_alt,
9 				 struct instruction *insn,
10 				 struct reloc *reloc)
11 {
12 	exit(-1);
13 }
14 
15 struct reloc *arch_find_switch_table(struct objtool_file *file,
16 				     struct instruction *insn,
17 				     unsigned long *table_size)
18 {
19 	exit(-1);
20 }
21 
22 const char *arch_cpu_feature_name(int feature_number)
23 {
24 	return NULL;
25 }
26