diff options
author | Nick Clifton <nickc@redhat.com> | 2001-07-30 18:12:07 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2001-07-30 18:12:07 +0000 |
commit | 156e34dd45a2e34588e3c84154c0eb387ed82397 (patch) | |
tree | 3c6dedd20f4e5422ff1bbd48553a4e64cfca3f6a /ld/ld.texinfo | |
parent | 86710ce2687eb3bf56b9b55a62c00243149886c0 (diff) | |
download | gdb-156e34dd45a2e34588e3c84154c0eb387ed82397.zip gdb-156e34dd45a2e34588e3c84154c0eb387ed82397.tar.gz gdb-156e34dd45a2e34588e3c84154c0eb387ed82397.tar.bz2 |
Fix computation in SECTIONS example.
Diffstat (limited to 'ld/ld.texinfo')
-rw-r--r-- | ld/ld.texinfo | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ld/ld.texinfo b/ld/ld.texinfo index db0cb28..b763dfe 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 |