bug-gnu-utils
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

LD Documentation Bug


From: Jeff Frohwein
Subject: LD Documentation Bug
Date: Sat, 28 Jul 2001 12:23:25 -0500

>From this link:
  http://sources.redhat.com/binutils/docs-2.10/ld_3.html#SEC16

Can be found the supporting text:

  The symbol `_bdata' will be defined as the address following
 the `.text' output section aligned upward to a 4 byte boundary.

This code fragment for the supporting text: 

  _bdata = (. + 3) & ~ 4;

should be this instead:

  _bdata = (. + 3) & ~ 3;

 Cheers,

 Jeff



reply via email to

[Prev in Thread] Current Thread [Next in Thread]