This is the mail archive of the binutils-cvs@sourceware.org mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[binutils-gdb] Correct @section placement for makeinfo 4.13


https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=ea86f5344298e24801c262d9b52afcc9cb692959

commit ea86f5344298e24801c262d9b52afcc9cb692959
Author: Alan Modra <amodra@gmail.com>
Date:   Tue Mar 7 19:39:32 2017 +1030

    Correct @section placement for makeinfo 4.13
    
    	* doc/as.texinfo (2byte, 4byte, 8byte): Correct @section placement.

Diff:
---
 gas/ChangeLog      | 4 ++++
 gas/doc/as.texinfo | 6 +++---
 2 files changed, 7 insertions(+), 3 deletions(-)

diff --git a/gas/ChangeLog b/gas/ChangeLog
index 4153dbe..7949343 100644
--- a/gas/ChangeLog
+++ b/gas/ChangeLog
@@ -1,3 +1,7 @@
+2017-03-07  Alan Modra  <amodra@gmail.com>
+
+	* doc/as.texinfo (2byte, 4byte, 8byte): Correct @section placement.
+
 2017-03-07  Tobin C. Harding  <me@tobin.cc>
 	    Alan Modra  <amodra@gmail.com>
 
diff --git a/gas/doc/as.texinfo b/gas/doc/as.texinfo
index 0a70d7c..a8f014b 100644
--- a/gas/doc/as.texinfo
+++ b/gas/doc/as.texinfo
@@ -7340,30 +7340,30 @@ instead of zero.  Using @samp{.zero} in this way would be confusing however.
 
 @ifset ELF
 @node 2byte
+@section @code{.2byte @var{expression} [, @var{expression}]*}
 @cindex @code{2byte} directive
 @cindex two-byte integer
 @cindex integer, 2-byte
-@section @code{.2byte @var{expression} [, @var{expression}]*}
 
 This directive @code{.2byte}, which is available for ELF targets, expects zero
 or more expressions, separated by commas. Each expression is assembled into the
 next two bytes.
 
 @node 4byte
+@section @code{.4byte @var{expression} [, @var{expression}]*}
 @cindex @code{4byte} directive
 @cindex four-byte integer
 @cindex integer, 4-byte
-@section @code{.4byte @var{expression} [, @var{expression}]*}
 
 This directive @code{.4byte}, which is available for ELF targets, expects zero
 or more expressions, separated by commas. Each expression is assembled into the
 next four bytes.
 
 @node 8byte
+@section @code{.8byte @var{expression} [, @var{expression}]*}
 @cindex @code{8byte} directive
 @cindex eight-byte integer
 @cindex integer, 8-byte
-@section @code{.8byte @var{expression} [, @var{expression}]*}
 
 This directive @code{.8byte}, which is available for ELF targets, expects zero
 or more bignums, separated by commas.  For each bignum, it emits


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]