]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
Fix typo in example
authorNick Clifton <nickc@redhat.com>
Tue, 31 Jul 2001 08:13:14 +0000 (08:13 +0000)
committerNick Clifton <nickc@redhat.com>
Tue, 31 Jul 2001 08:13:14 +0000 (08:13 +0000)
ld/ChangeLog
ld/ld.texinfo

index df9f3c5f54b510ba70ca5adc889e226911c46f5d..ef94df491d40122b2787ae03e6303170a3cd20c4 100644 (file)
@@ -1,3 +1,8 @@
+2001-07-30  Nick Clifton  <nickc@cambridge.redhat.com>
+
+       * ld.texinfo (Simple Assignments): Fix computation in SECTIONS
+       example.
+
 2001-07-19  David O'Brien  <obrien@FreeBSD.org>
 
        * emultempl/elf32.em: Do not assuming that contents of the buffer
index 668c0e92f3b72296189ab4a11e2d081b4508f366..8c4d98f10f993128378832f656da38a3128c3c5f 100644 (file)
@@ -2123,7 +2123,7 @@ SECTIONS
       *(.text)
       _etext = .;
     @}
-  _bdata = (. + 3) & ~ 4;
+  _bdata = (. + 3) & ~ 3;
   .data : @{ *(.data) @}
 @}
 @end smallexample