X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=bfd%2Fcpu-vax.c;h=1c2539615a62df315f73d3e5afacd9000d2e66ad;hb=e443398846ee51d66b3df2524f7e0ddcb26cdae3;hp=4d5af2348c3cf3fc9799f976b62ccbcd9b560d8b;hpb=fa803dc60f0bf01297674c41d001798e18ade4dc;p=deliverable%2Fbinutils-gdb.git diff --git a/bfd/cpu-vax.c b/bfd/cpu-vax.c index 4d5af2348c..1c2539615a 100644 --- a/bfd/cpu-vax.c +++ b/bfd/cpu-vax.c @@ -1,52 +1,42 @@ /* bfd back-end for vax support - Copyright (C) 1990-1991 Free Software Foundation, Inc. + Copyright (C) 1990-2020 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 = - { - 32, /* 32 bits in a word */ - 32, /* 32 bits in an address */ - 8, /* 8 bits in a byte */ - bfd_arch_vax, - 0, /* only 1 machine */ - "vax", - "vax", - true, /* the one and only */ - bfd_default_compatible, - bfd_default_scan , - 0, - 0, - }; - - - - -void DEFUN_VOID(bfd_vax_arch) +const bfd_arch_info_type bfd_vax_arch = { - bfd_arch_linkin(&arch_info_struct); -} - - - + 32, /* Bits in a word. */ + 32, /* Bits in an address. */ + 8, /* Bits in a byte. */ + bfd_arch_vax, + 0, /* Only 1 machine. */ + "vax", + "vax", + 3, + TRUE, /* The one and only. */ + bfd_default_compatible, + bfd_default_scan, + bfd_arch_default_fill, + NULL, + 0 /* Maximum offset of a reloc from the start of an insn. */ +};