OSDN Git Service

* internal.h (elf_internal_rela): Make r_addend a bfd_vma.
authorAlan Modra <amodra@bigpond.net.au>
Tue, 18 Sep 2001 10:01:41 +0000 (10:01 +0000)
committerAlan Modra <amodra@bigpond.net.au>
Tue, 18 Sep 2001 10:01:41 +0000 (10:01 +0000)
include/elf/ChangeLog
include/elf/internal.h

index 10dc047..e9032aa 100644 (file)
@@ -1,3 +1,7 @@
+2001-09-18  Alan Modra  <amodra@bigpond.net.au>
+
+       * internal.h (elf_internal_rela): Make r_addend a bfd_vma.
+
 2001-09-13  Alexandre Oliva  <aoliva@redhat.com>
 
        * common.h (EM_OPENRISC_OLD): Renamed the old EM_OPENRISC entry.
index eb79917..6d26315 100644 (file)
@@ -1,5 +1,5 @@
 /* ELF support for BFD.
-   Copyright 1991, 1992, 1993, 1994, 1995, 1997, 1998, 2000
+   Copyright 1991, 1992, 1993, 1994, 1995, 1997, 1998, 2000, 2001
    Free Software Foundation, Inc.
 
    Written by Fred Fish @ Cygnus Support, from information published
@@ -153,7 +153,7 @@ typedef struct elf_internal_rel {
 typedef struct elf_internal_rela {
   bfd_vma      r_offset;       /* Location at which to apply the action */
   bfd_vma      r_info;         /* Index and Type of relocation */
-  bfd_signed_vma r_addend;     /* Constant addend used to compute value */
+  bfd_vma      r_addend;       /* Constant addend used to compute value */
 } Elf_Internal_Rela;
 
 #define elf32_internal_rela elf_internal_rela