]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
Correct local label doc
authorAlan Modra <amodra@gmail.com>
Thu, 13 Aug 2015 06:21:51 +0000 (15:51 +0930)
committerAlan Modra <amodra@gmail.com>
Thu, 13 Aug 2015 06:23:49 +0000 (15:53 +0930)
* doc/as.texinfo (Local Labels): Allowed range of N in local
labels is non-negative integers, not positive integers.

gas/ChangeLog
gas/doc/as.texinfo

index 220047c9d6ef4dbbff364ea7524aacb27156ad42..d5b29f2ee10f0cb3cde85f59f457a4c0b214805c 100644 (file)
@@ -1,3 +1,8 @@
+2015-08-13  Alan Modra  <amodra@gmail.com>
+
+       * doc/as.texinfo (Local Labels): Allowed range of N in local
+       labels is non-negative integers, not positive integers.
+
 2015-08-12  David Weatherford  <weath@cadence.com>
 
        * config/tc-xtensa.c (struct litpool_frag, struct litpool_seg):
index dae7424e6d096ea4d0721558c22a200dbb1243ef..c2f2f8683db224aa4dda7c091c87411bb1fc4ccd 100644 (file)
@@ -3707,11 +3707,11 @@ Local labels are different from local symbols.  Local labels help compilers and
 programmers use names temporarily.  They create symbols which are guaranteed to
 be unique over the entire scope of the input source code and which can be
 referred to by a simple notation.  To define a local label, write a label of
-the form @samp{@b{N}:} (where @b{N} represents any positive integer).  To refer
-to the most recent previous definition of that label write @samp{@b{N}b}, using
-the same number as when you defined the label.  To refer to the next definition
-of a local label, write @samp{@b{N}f}---the @samp{b} stands for ``backwards''
-and the @samp{f} stands for ``forwards''.
+the form @samp{@b{N}:} (where @b{N} represents any non-negative integer).
+To refer to the most recent previous definition of that label write
+@samp{@b{N}b}, using the same number as when you defined the label.  To refer
+to the next definition of a local label, write @samp{@b{N}f}.  The @samp{b}
+stands for ``backwards'' and the @samp{f} stands for ``forwards''.
 
 There is no restriction on how you can use these labels, and you can reuse them
 too.  So that it is possible to repeatedly define the same local label (using