Fix computation in SECTIONS example.
This commit is contained in:
parent
86710ce268
commit
156e34dd45
2 changed files with 6 additions and 1 deletions
|
@ -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".
|
||||
|
|
|
@ -2225,7 +2225,7 @@ SECTIONS
|
|||
*(.text)
|
||||
_etext = .;
|
||||
@}
|
||||
_bdata = (. + 3) & ~ 4;
|
||||
_bdata = (. + 3) & ~ 3;
|
||||
.data : @{ *(.data) @}
|
||||
@}
|
||||
@end smallexample
|
||||
|
|
Loading…
Reference in a new issue