| Index: bfd/elfxx-target.h
|
| diff --git a/bfd/elfxx-target.h b/bfd/elfxx-target.h
|
| index 96ecce308d271a37f83743442f8820ba6b6a663a..5a6cae02ee3f5eb5370eb8a6cb88e1a5132b370b 100644
|
| --- a/bfd/elfxx-target.h
|
| +++ b/bfd/elfxx-target.h
|
| @@ -1,6 +1,6 @@
|
| /* Target definitions for NN-bit ELF
|
| Copyright 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
|
| - 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
|
| + 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012
|
| Free Software Foundation, Inc.
|
|
|
| This file is part of BFD, the Binary File Descriptor library.
|
| @@ -655,6 +655,10 @@
|
| #define elf_backend_is_function_type _bfd_elf_is_function_type
|
| #endif
|
|
|
| +#ifndef elf_backend_maybe_function_sym
|
| +#define elf_backend_maybe_function_sym _bfd_elf_maybe_function_sym
|
| +#endif
|
| +
|
| #ifndef elf_match_priority
|
| #define elf_match_priority \
|
| (ELF_ARCH == bfd_arch_unknown ? 2 : ELF_OSABI == ELFOSABI_NONE ? 1 : 0)
|
| @@ -750,6 +754,7 @@ static struct elf_backend_data elfNN_bed =
|
| elf_backend_merge_symbol,
|
| elf_backend_hash_symbol,
|
| elf_backend_is_function_type,
|
| + elf_backend_maybe_function_sym,
|
| elf_backend_link_order_error_handler,
|
| elf_backend_relplt_name,
|
| ELF_MACHINE_ALT1,
|
|
|