Fix pc relocations.
authorTom Rix <trix@redhat.com>
Mon, 17 Jun 2002 13:43:50 +0000 (13:43 +0000)
committerTom Rix <trix@redhat.com>
Mon, 17 Jun 2002 13:43:50 +0000 (13:43 +0000)
bfd/ChangeLog
bfd/elf32-d10v.c

index a9c477bfcb3aebdc4b99fbb0ff3e527f7e60c957..813e758300fbbd793fec7e255905e152eae49cfb 100644 (file)
@@ -1,3 +1,9 @@
+2002-06-17  Tom Rix <trix@redhat.com>
+
+       * elf32-d10v.c (elf_d10v_howto_table): Change R_D10V_10_PCREL_R,
+       R_D10V_10_PCREL_L and R_D10V_18_PCREL to use 
+       complain_overflow_bitfield.
+
 2002-06-17  Alan Modra  <amodra@bigpond.net.au>
 
        * opncls.c (bfd_openr): Remove redundant bfd_set_error.
index cd0624477eb99663a8d853166017742ff23852bc..6ac5e2dd6588547a03cf8d16d0a684a8b1a971af 100644 (file)
@@ -1,5 +1,5 @@
 /* D10V-specific support for 32-bit ELF
-   Copyright 1996, 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
+   Copyright 1996, 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
    Contributed by Martin Hunt (hunt@cygnus.com).
 
 This file is part of BFD, the Binary File Descriptor library.
@@ -67,10 +67,10 @@ static reloc_howto_type elf_d10v_howto_table[] =
     HOWTO (R_D10V_10_PCREL_R,  /* type */
           2,                   /* rightshift */
           2,                   /* size (0 = byte, 1 = short, 2 = long) */
-          8,                   /* bitsize */
+          7,                   /* bitsize */
           true,                /* pc_relative */
           0,                   /* bitpos */
-          complain_overflow_signed, /* complain_on_overflow */
+          complain_overflow_bitfield, /* complain_on_overflow */
           bfd_elf_generic_reloc, /* special_function */
           "R_D10V_10_PCREL_R", /* name */
           false,               /* partial_inplace */
@@ -83,10 +83,10 @@ static reloc_howto_type elf_d10v_howto_table[] =
     HOWTO (R_D10V_10_PCREL_L,  /* type */
           2,                   /* rightshift */
           2,                   /* size (0 = byte, 1 = short, 2 = long) */
-          8,                   /* bitsize */
+          7,                   /* bitsize */
           true,                /* pc_relative */
           15,                  /* bitpos */
-          complain_overflow_signed, /* complain_on_overflow */
+          complain_overflow_bitfield, /* complain_on_overflow */
           bfd_elf_generic_reloc, /* special_function */
           "R_D10V_10_PCREL_L", /* name */
           false,               /* partial_inplace */
@@ -128,10 +128,10 @@ static reloc_howto_type elf_d10v_howto_table[] =
     HOWTO (R_D10V_18_PCREL,    /* type */
           2,                   /* rightshift */
           2,                   /* size (0 = byte, 1 = short, 2 = long) */
-          16,                  /* bitsize */
+          15,                  /* bitsize */
           true,                /* pc_relative */
           0,                   /* bitpos */
-          complain_overflow_signed, /* complain_on_overflow */
+          complain_overflow_bitfield, /* complain_on_overflow */
           bfd_elf_generic_reloc, /* special_function */
           "R_D10V_18_PCREL",   /* name */
           false,               /* partial_inplace */
This page took 0.03046 seconds and 4 git commands to generate.