projects
/
binutils-gdb.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b582395
)
* reloc.c (bfd_get_reloc_size): Size of type -2 is 4 bytes, not 2.
author
Ian Lance Taylor
<ian@airs.com>
Tue, 25 Jan 1994 20:48:48 +0000
(20:48 +0000)
committer
Ian Lance Taylor
<ian@airs.com>
Tue, 25 Jan 1994 20:48:48 +0000
(20:48 +0000)
bfd/ChangeLog
patch
|
blob
|
history
bfd/reloc.c
patch
|
blob
|
history
diff --git
a/bfd/ChangeLog
b/bfd/ChangeLog
index 9a72e019744b4f5dc9500c8b1e9c21d858dec31a..d12a7f8ea8504612eb4e2cd9a692040b7c2bd66b 100644
(file)
--- a/
bfd/ChangeLog
+++ b/
bfd/ChangeLog
@@
-8,6
+8,8
@@
Tue Jan 25 11:43:28 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
Tue Jan 25 11:46:46 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
+ * reloc.c (bfd_get_reloc_size): Size of type -2 is 4 bytes, not 2.
+
* hp300hpux.c (MY(write_object_contents)): Write out the symbols
before writing out the relocs, so that the right symbol indices
are used.
diff --git
a/bfd/reloc.c
b/bfd/reloc.c
index e0fb312d81d26b6f8a52ba4345394e703f4742a7..675bb2982cffc8ec1a22058592ac60974fa9ed65 100644
(file)
--- a/
bfd/reloc.c
+++ b/
bfd/reloc.c
@@
-423,7
+423,7
@@
bfd_get_reloc_size (howto)
case 2: return 4;
case 3: return 0;
case 4: return 8;
- case -2: return
2
;
+ case -2: return
4
;
default: abort ();
}
}