X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=gas%2Fconfig%2Fobj-multi.h;h=6bb9b00ac318a289fb80d3c5b7449b46928a3664;hb=814f1489e9d1d92a30d94d69a0066addcc564bd2;hp=2cca674e15bd5f5f2260a7f842e5e78200e721e4;hpb=60938e80e69ba5182cdd924b757d783c43637104;p=deliverable%2Fbinutils-gdb.git diff --git a/gas/config/obj-multi.h b/gas/config/obj-multi.h index 2cca674e15..6bb9b00ac3 100644 --- a/gas/config/obj-multi.h +++ b/gas/config/obj-multi.h @@ -1,12 +1,11 @@ /* Multiple object format emulation. - Copyright 1995, 1996, 1997, 1999, 2000, 2002, 2004 - Free Software Foundation, Inc. + Copyright (C) 1995-2016 Free Software Foundation, Inc. This file is part of GAS, the GNU Assembler. GAS is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2, or (at your option) + the Free Software Foundation; either version 3, or (at your option) any later version. GAS is distributed in the hope that it will be useful, @@ -16,8 +15,8 @@ You should have received a copy of the GNU General Public License along with GAS; see the file COPYING. If not, write to the Free - Software Foundation, 59 Temple Place - Suite 330, Boston, MA - 02111-1307, USA. */ + Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA + 02110-1301, USA. */ #ifndef _OBJ_MULTI_H #define _OBJ_MULTI_H @@ -81,11 +80,21 @@ ? (*this_format->symbol_new_hook) (S) \ : (void) 0) +#define obj_symbol_clone_hook(N, O) \ + (this_format->symbol_clone_hook \ + ? (*this_format->symbol_clone_hook) (N, O) \ + : (void) 0) + #define obj_sec_sym_ok_for_reloc(A) \ (this_format->sec_sym_ok_for_reloc \ ? (*this_format->sec_sym_ok_for_reloc) (A) \ : 0) +#define obj_adjust_symtab() \ + (this_format->adjust_symtab \ + ? (*this_format->adjust_symtab) () \ + : (void) 0) + #define S_GET_SIZE \ (*this_format->s_get_size)