From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2124) id DB42C3858D28; Wed, 12 Apr 2023 08:55:47 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org DB42C3858D28 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable From: Nick Clifton To: bfd-cvs@sourceware.org Subject: [binutils-gdb] Fix typos in the linker's documentation of the --enable-non-contiguous-regions option. X-Act-Checkin: binutils-gdb X-Git-Author: Nick Clifton X-Git-Refname: refs/heads/master X-Git-Oldrev: 93c6e8c3c14bf81020ca7571fe752250a34f5bc9 X-Git-Newrev: 93cda40b4cbef77a45e678f8d8919da18f7d011c Message-Id: <20230412085547.DB42C3858D28@sourceware.org> Date: Wed, 12 Apr 2023 08:55:47 +0000 (GMT) X-BeenThere: binutils-cvs@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Binutils-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Apr 2023 08:55:48 -0000 https://sourceware.org/git/gitweb.cgi?p=3Dbinutils-gdb.git;h=3D93cda40b4cbe= f77a45e678f8d8919da18f7d011c commit 93cda40b4cbef77a45e678f8d8919da18f7d011c Author: Nick Clifton Date: Wed Apr 12 09:54:48 2023 +0100 Fix typos in the linker's documentation of the --enable-non-contiguous-= regions option. Diff: --- ld/ChangeLog | 5 +++++ ld/ld.texi | 6 +++--- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/ld/ChangeLog b/ld/ChangeLog index 698b3ea4c11..7d42a3e663a 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,8 @@ +2023-04-12 Nick Clifton + + * ld.texi (--enable-non-contiguous-regions): Fix typos in script + example. + 2023-03-15 Nick Clifton =20 PR 30187 diff --git a/ld/ld.texi b/ld/ld.texi index fe4ec82d673..1f0478b175c 100644 --- a/ld/ld.texi +++ b/ld/ld.texi @@ -489,9 +489,9 @@ sections are evaluated does not change, for instance: =20 @smallexample MEMORY @{ - MEM1 (rwx) : ORIGIN : 0x1000, LENGTH =3D 0x14 - MEM2 (rwx) : ORIGIN : 0x1000, LENGTH =3D 0x40 - MEM3 (rwx) : ORIGIN : 0x2000, LENGTH =3D 0x40 + MEM1 (rwx) : ORIGIN =3D 0x1000, LENGTH =3D 0x14 + MEM2 (rwx) : ORIGIN =3D 0x1000, LENGTH =3D 0x40 + MEM3 (rwx) : ORIGIN =3D 0x2000, LENGTH =3D 0x40 @} SECTIONS @{ mem1 : @{ *(.data.*); @} > MEM1