special.c 507 B

12345678910111213141516171819202122232425
  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. bool arch_support_alt_relocation(struct special_alt *special_alt,
  7. struct instruction *insn,
  8. struct reloc *reloc)
  9. {
  10. exit(-1);
  11. }
  12. struct reloc *arch_find_switch_table(struct objtool_file *file,
  13. struct instruction *insn,
  14. unsigned long *table_size)
  15. {
  16. exit(-1);
  17. }
  18. const char *arch_cpu_feature_name(int feature_number)
  19. {
  20. return NULL;
  21. }