projects
/
external
/
binutils.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
86710ce
)
Fix computation in SECTIONS example.
author
Nick Clifton
<nickc@redhat.com>
Mon, 30 Jul 2001 18:12:07 +0000
(18:12 +0000)
committer
Nick Clifton
<nickc@redhat.com>
Mon, 30 Jul 2001 18:12:07 +0000
(18:12 +0000)
ld/ChangeLog
patch
|
blob
|
history
ld/ld.texinfo
patch
|
blob
|
history
diff --git
a/ld/ChangeLog
b/ld/ChangeLog
index
87965cc
..
c4a20a0
100644
(file)
--- a/
ld/ChangeLog
+++ b/
ld/ChangeLog
@@
-1,3
+1,8
@@
+2001-07-30 Nick Clifton <nickc@cambridge.redhat.com>
+
+ * ld.texinfo (Simple Assignments): Fix computation in SECTIONS
+ example.
+
2001-07-24 Alan Modra <amodra@bigpond.net.au>
* Makefile.am: Update dependencies with "make dep-am".
diff --git
a/ld/ld.texinfo
b/ld/ld.texinfo
index
db0cb28
..
b763dfe
100644
(file)
--- a/
ld/ld.texinfo
+++ b/
ld/ld.texinfo
@@
-2225,7
+2225,7
@@
SECTIONS
*(.text)
_etext = .;
@}
- _bdata = (. + 3) & ~
4
;
+ _bdata = (. + 3) & ~
3
;
.data : @{ *(.data) @}
@}
@end smallexample