Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Modra <modra@gmail.com>2001-09-18 14:01:41 +0400
committerAlan Modra <modra@gmail.com>2001-09-18 14:01:41 +0400
commit8b77cd25035f952a8f55cb25a0c8d32d58acd888 (patch)
tree39e22486fc3888270412a81bf8043d0b9d934733
parent44346d6912c7d98f396727d0c8cf8f9c95018693 (diff)
* internal.h (elf_internal_rela): Make r_addend a bfd_vma.
-rw-r--r--include/elf/ChangeLog4
-rw-r--r--include/elf/internal.h4
2 files changed, 6 insertions, 2 deletions
diff --git a/include/elf/ChangeLog b/include/elf/ChangeLog
index 10dc0474f..e9032aa44 100644
--- a/include/elf/ChangeLog
+++ b/include/elf/ChangeLog
@@ -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.
diff --git a/include/elf/internal.h b/include/elf/internal.h
index eb79917f1..6d2631598 100644
--- a/include/elf/internal.h
+++ b/include/elf/internal.h
@@ -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