From: Nick Clifton Date: Mon, 30 Jul 2001 18:12:07 +0000 (+0000) Subject: Fix computation in SECTIONS example. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=156e34dd45a2e34588e3c84154c0eb387ed82397;p=binutils-gdb.git Fix computation in SECTIONS example. --- diff --git a/ld/ChangeLog b/ld/ChangeLog index 87965cc76d2..c4a20a0f7ed 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,8 @@ +2001-07-30 Nick Clifton + + * ld.texinfo (Simple Assignments): Fix computation in SECTIONS + example. + 2001-07-24 Alan Modra * Makefile.am: Update dependencies with "make dep-am". diff --git a/ld/ld.texinfo b/ld/ld.texinfo index db0cb283317..b763dfe3967 100644 --- 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