From: Nick Clifton Date: Tue, 31 Jul 2001 08:13:14 +0000 (+0000) Subject: Fix typo in example X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d3a958f1fc148d7f00ef41824b2ff6aa0588558c;p=thirdparty%2Fbinutils-gdb.git Fix typo in example --- diff --git a/ld/ChangeLog b/ld/ChangeLog index df9f3c5f54b..ef94df491d4 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-19 David O'Brien * emultempl/elf32.em: Do not assuming that contents of the buffer diff --git a/ld/ld.texinfo b/ld/ld.texinfo index 668c0e92f3b..8c4d98f10f9 100644 --- a/ld/ld.texinfo +++ b/ld/ld.texinfo @@ -2123,7 +2123,7 @@ SECTIONS *(.text) _etext = .; @} - _bdata = (. + 3) & ~ 4; + _bdata = (. + 3) & ~ 3; .data : @{ *(.data) @} @} @end smallexample