]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
2001-06-09 Philip Blundell <philb@gnu.org>
authorPhil Blundell <philb@gnu.org>
Sat, 9 Jun 2001 20:18:32 +0000 (20:18 +0000)
committerPhil Blundell <philb@gnu.org>
Sat, 9 Jun 2001 20:18:32 +0000 (20:18 +0000)
* elf32-arm.h (elf32_arm_plt0_entry): Correct error in last
change.
(elf32_arm_plt_entry): Likewise.

bfd/ChangeLog
bfd/elf32-arm.h

index ef143b1097b5979c9c145daa25437139d4739c27..bc12b66f85f5e57c944d5af7167bac21f9995379 100644 (file)
@@ -1,3 +1,9 @@
+2001-06-09  Philip Blundell  <philb@gnu.org>
+
+       * elf32-arm.h (elf32_arm_plt0_entry): Correct error in last
+       change.
+       (elf32_arm_plt_entry): Likewise.
+
 2001-06-07  Alan Modra  <amodra@bigpond.net.au>
 
        * Most files: Update copyright notices.
index 7f273e454e2eb6fea4508c44345aa8ccc7822456..bfc4ca3c532e756f0845d65efacbdc3d0f3db062 100644 (file)
@@ -78,7 +78,7 @@ static int elf32_thumb_to_arm_stub
    this.  It is set up so that any shared library function that is
    called before the relocation has been set up calls the dynamic
    linker first.  */
-static const bfd_byte elf32_arm_plt0_entry [PLT_ENTRY_SIZE] =
+static const unsigned long elf32_arm_plt0_entry [PLT_ENTRY_SIZE / 4] =
 {
   0xe52de004,  /* str   lr, [sp, #-4]!     */
   0xe59fe010,  /* ldr   lr, [pc, #16]      */
@@ -88,7 +88,7 @@ static const bfd_byte elf32_arm_plt0_entry [PLT_ENTRY_SIZE] =
 
 /* Subsequent entries in a procedure linkage table look like
    this.  */
-static const bfd_byte elf32_arm_plt_entry [PLT_ENTRY_SIZE] =
+static const unsigned long elf32_arm_plt_entry [PLT_ENTRY_SIZE / 4] =
 {
   0xe59fc004,  /* ldr   ip, [pc, #4]       */
   0xe08fc00c,  /* add   ip, pc, ip         */