diff options
Diffstat (limited to 'gas')
-rw-r--r-- | gas/doc/as.texi | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/gas/doc/as.texi b/gas/doc/as.texi index 56b5b75..42db11e 100644 --- a/gas/doc/as.texi +++ b/gas/doc/as.texi @@ -6231,27 +6231,22 @@ specified by position, not keyword. @xref{Altmacro,,@code{.altmacro}}. Thus for example: @example -.altmacro .macro foo bar=1, baz=2 .print "\bar \baz" .endm foo baz=3 +.altmacro +foo baz=3 @end example Will print: @smallexample -baz=3 2 -@end smallexample - -Rather than the expected: - -@smallexample 1 3 +baz=3 2 @end smallexample - @end table Note that since each of the @var{macargs} can be an identifier exactly |