mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-23 18:14:13 +08:00
Adds documentation of GAS's .zero directive.
PR gas/18353 * doc/as.texinfo (Zero): Add documentation of the .zero pseudo-op.
This commit is contained in:
parent
5fccc63539
commit
7ce98c164e
@ -1,3 +1,8 @@
|
||||
2015-04-30 Nick Clifton <nickc@redhat.com>
|
||||
|
||||
PR gas/18353
|
||||
* doc/as.texinfo (Zero): Add documentation of the .zero pseudo-op.
|
||||
|
||||
2015-04-29 Nick Clifton <nickc@redhat.com>
|
||||
|
||||
PR 18256
|
||||
|
@ -4380,6 +4380,9 @@ Some machine configurations provide additional directives.
|
||||
* Weak:: @code{.weak @var{names}}
|
||||
* Weakref:: @code{.weakref @var{alias}, @var{symbol}}
|
||||
* Word:: @code{.word @var{expressions}}
|
||||
@ifclear no-space-dir
|
||||
* Zero:: @code{.zero @var{size}}
|
||||
@end ifclear
|
||||
* Deprecated:: Deprecated Directives
|
||||
@end menu
|
||||
|
||||
@ -6995,6 +6998,18 @@ assembly language programmers.
|
||||
@end ifset
|
||||
@c end DIFF-TBL-KLUGE
|
||||
|
||||
@ifclear no-space-dir
|
||||
@node Zero
|
||||
@section @code{.zero @var{size}}
|
||||
|
||||
@cindex @code{zero} directive
|
||||
@cindex filling memory with zero bytes
|
||||
This directive emits @var{size} 0-valued bytes. @var{size} must be an absolute
|
||||
expression. This directive is actually an alias for the @samp{.skip} directive
|
||||
so in can take an optional second argument of the value to store in the bytes
|
||||
instead of zero. Using @samp{.zero} in this way would be confusing however.
|
||||
@end ifclear
|
||||
|
||||
@node Deprecated
|
||||
@section Deprecated Directives
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user