aboutsummaryrefslogtreecommitdiff
path: root/bfd
diff options
context:
space:
mode:
authorJan Beulich <jbeulich@novell.com>2007-09-11 15:44:19 +0000
committerJan Beulich <jbeulich@novell.com>2007-09-11 15:44:19 +0000
commit2f629d2305e935524b49e14da64e1ffe26ea9d6b (patch)
tree5e70faba615a49e274cc2279887311c107ae2ddc /bfd
parentd6d25f2043da6141ae2458e9546c32135efe75dc (diff)
downloadgdb-2f629d2305e935524b49e14da64e1ffe26ea9d6b.zip
gdb-2f629d2305e935524b49e14da64e1ffe26ea9d6b.tar.gz
gdb-2f629d2305e935524b49e14da64e1ffe26ea9d6b.tar.bz2
2007-09-11 Jan Beulich <jbeulich@novell.com>
* elf64-i386.c (elf64_i386_tls_transition): Remove redundant 'const'. * elf64-x86_64.c (elf64_x86_64_tls_transition): Likewise.
Diffstat (limited to 'bfd')
-rw-r--r--bfd/ChangeLog5
-rw-r--r--bfd/elf32-i386.c2
-rw-r--r--bfd/elf64-x86-64.c2
3 files changed, 7 insertions, 2 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index 0078efc..cba32ae 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -1,3 +1,8 @@
+2007-09-11 Jan Beulich <jbeulich@novell.com>
+
+ * elf64-i386.c (elf64_i386_tls_transition): Remove redundant 'const'.
+ * elf64-x86_64.c (elf64_x86_64_tls_transition): Likewise.
+
2007-09-08 Alan Modra <amodra@bigpond.net.au>
* elf64-ppc.c (func_desc_adjust): When resolving undefined
diff --git a/bfd/elf32-i386.c b/bfd/elf32-i386.c
index 072dc6f..543ea21 100644
--- a/bfd/elf32-i386.c
+++ b/bfd/elf32-i386.c
@@ -1171,7 +1171,7 @@ elf_i386_tls_transition (struct bfd_link_info *info, bfd *abfd,
symtab_hdr, sym_hashes,
from_type, rel, relend))
{
- const reloc_howto_type *from, *to;
+ reloc_howto_type *from, *to;
from = elf_i386_rtype_to_howto (abfd, from_type);
to = elf_i386_rtype_to_howto (abfd, to_type);
diff --git a/bfd/elf64-x86-64.c b/bfd/elf64-x86-64.c
index 840e37a..c95e2c9 100644
--- a/bfd/elf64-x86-64.c
+++ b/bfd/elf64-x86-64.c
@@ -952,7 +952,7 @@ elf64_x86_64_tls_transition (struct bfd_link_info *info, bfd *abfd,
symtab_hdr, sym_hashes,
from_type, rel, relend))
{
- const reloc_howto_type *from, *to;
+ reloc_howto_type *from, *to;
from = elf64_x86_64_rtype_to_howto (abfd, from_type);
to = elf64_x86_64_rtype_to_howto (abfd, to_type);