diff options
author | Bob Wilson <bob.wilson@acm.org> | 2008-10-09 18:10:44 +0000 |
---|---|---|
committer | Bob Wilson <bob.wilson@acm.org> | 2008-10-09 18:10:44 +0000 |
commit | 884f0d36b4c8a2d96a12af080f1c633b0c221c9d (patch) | |
tree | cce10bfae02730a8ecd079eb529602f17c34c51e /gas | |
parent | 14082c76243bc7ec79c20faa7b01a320f30caa97 (diff) | |
download | gdb-884f0d36b4c8a2d96a12af080f1c633b0c221c9d.zip gdb-884f0d36b4c8a2d96a12af080f1c633b0c221c9d.tar.gz gdb-884f0d36b4c8a2d96a12af080f1c633b0c221c9d.tar.bz2 |
* doc/as.texinfo (Dot): Expand no-space-dir conditional to include
a complete sentence.
(Pseudo Ops): Put conditionals around Skip and Space menu entries.
(Line): Remove conditional declaration of Ln node and section here.
Put aout-bout description inside the no-line-dir conditional.
(Skip, Space): Use a separate conditional for each node.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 13 | ||||
-rw-r--r-- | gas/doc/as.texinfo | 20 |
2 files changed, 20 insertions, 13 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index a2e5cb0..5a58598 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,5 +1,14 @@ 2008-10-09 Bob Wilson <bob.wilson@acm.org> - + + * doc/as.texinfo (Dot): Expand no-space-dir conditional to include + a complete sentence. + (Pseudo Ops): Put conditionals around Skip and Space menu entries. + (Line): Remove conditional declaration of Ln node and section here. + Put aout-bout description inside the no-line-dir conditional. + (Skip, Space): Use a separate conditional for each node. + +2008-10-09 Bob Wilson <bob.wilson@acm.org> + * doc/as.texinfo (Pseudo Ops): Remove no-file-dir conditional around menu entry for File; remove version-specific .file operands from menu description. Replace "LNS directives" menu entry with new entries @@ -11,7 +20,7 @@ (File): Change this node to describe both the default version and the DWARF2 version of .file. Move the no-file-dir conditional to include only the default version. - + 2008-10-09 Eric Botcazou <ebotcazou@adacore.com> * dw2gencfi.c (cfi_finish): Deal with md_fix_up_eh_frame. diff --git a/gas/doc/as.texinfo b/gas/doc/as.texinfo index 2503ed4..82896e0 100644 --- a/gas/doc/as.texinfo +++ b/gas/doc/as.texinfo @@ -3373,8 +3373,9 @@ The special symbol @samp{.} refers to the current address that @command{@value{AS}} is assembling into. Thus, the expression @samp{melvin: .long .} defines @code{melvin} to contain its own address. Assigning a value to @code{.} is treated the same as a @code{.org} -directive. Thus, the expression @samp{.=.+4} is the same as saying +directive. @ifclear no-space-dir +Thus, the expression @samp{.=.+4} is the same as saying @samp{.space 4}. @end ifclear @@ -3923,10 +3924,14 @@ Some machine configurations provide additional directives. @ifset COFF-ELF * Size:: @code{.size [@var{name} , @var{expression}]} @end ifset - +@ifclear no-space-dir * Skip:: @code{.skip @var{size} , @var{fill}} +@end ifclear + * Sleb128:: @code{.sleb128 @var{expressions}} +@ifclear no-space-dir * Space:: @code{.space @var{size} , @var{fill}} +@end ifclear @ifset have-stabs * Stab:: @code{.stabd, .stabn, .stabs} @end ifset @@ -4942,13 +4947,6 @@ assemblers, but ignores it. @section @code{.line @var{line-number}} @cindex @code{line} directive -@end ifclear -@ifset no-line-dir -@node Ln -@section @code{.ln @var{line-number}} - -@cindex @code{ln} directive -@end ifset @cindex logical line number @ifset aout-bout Change the logical line number. @var{line-number} must be an absolute @@ -4957,10 +4955,8 @@ statements on the current line (after a statement separator character) are reported as on logical line number @var{line-number} @minus{} 1. One day @command{@value{AS}} will no longer support this directive: it is recognized only for compatibility with existing assembler programs. - @end ifset -@ifclear no-line-dir Even though this is a directive associated with the @code{a.out} or @code{b.out} object-code formats, @command{@value{AS}} still recognizes it when producing COFF output, and treats @samp{.line} as though it @@ -5953,7 +5949,9 @@ This directive emits @var{size} bytes, each of value @var{fill}. Both @var{size} and @var{fill} are absolute expressions. If the comma and @var{fill} are omitted, @var{fill} is assumed to be zero. This is the same as @samp{.space}. +@end ifclear +@ifclear no-space-dir @node Space @section @code{.space @var{size} , @var{fill}} |