X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=bfd%2Fcpu-vax.c;h=c550fdf83c3e62e556bafab7780514dfae9f3bae;hb=1d827a720c9659cc8d54059ccc3efae24b875c03;hp=4d5af2348c3cf3fc9799f976b62ccbcd9b560d8b;hpb=fa803dc60f0bf01297674c41d001798e18ade4dc;p=deliverable%2Fbinutils-gdb.git diff --git a/bfd/cpu-vax.c b/bfd/cpu-vax.c index 4d5af2348c..c550fdf83c 100644 --- a/bfd/cpu-vax.c +++ b/bfd/cpu-vax.c @@ -1,30 +1,29 @@ /* bfd back-end for vax support - Copyright (C) 1990-1991 Free Software Foundation, Inc. + Copyright (C) 1990-2017 Free Software Foundation, Inc. Written by Steve Chamberlain of Cygnus Support. -This file is part of BFD, the Binary File Descriptor library. + This file is part of BFD, the Binary File Descriptor library. -This program 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 of the License, or -(at your option) any later version. + This program 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 3 of the License, or + (at your option) any later version. -This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. -You should have received a copy of the GNU General Public License -along with this program; if not, write to the Free Software -Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, + MA 02110-1301, USA. */ -#include -#include +#include "sysdep.h" +#include "bfd.h" #include "libbfd.h" - - -static bfd_arch_info_struct_type arch_info_struct = +const bfd_arch_info_type bfd_vax_arch = { 32, /* 32 bits in a word */ 32, /* 32 bits in an address */ @@ -33,20 +32,10 @@ static bfd_arch_info_struct_type arch_info_struct = 0, /* only 1 machine */ "vax", "vax", - true, /* the one and only */ - bfd_default_compatible, - bfd_default_scan , - 0, + 3, + TRUE, /* the one and only */ + bfd_default_compatible, + bfd_default_scan, + bfd_arch_default_fill, 0, }; - - - - -void DEFUN_VOID(bfd_vax_arch) -{ - bfd_arch_linkin(&arch_info_struct); -} - - -