diff options
author | Jan Beulich <jbeulich@novell.com> | 2005-05-06 06:38:11 +0000 |
---|---|---|
committer | Jan Beulich <jbeulich@novell.com> | 2005-05-06 06:38:11 +0000 |
commit | 26aca5f60e2dde898fb5e6d71859778f0b786f09 (patch) | |
tree | e1c41eac4e28939c0e5bea623b454151f3cf0809 /gas/doc/as.texinfo | |
parent | a580b8e05174aa8dd67b0bae41037182aba6b418 (diff) | |
download | gdb-26aca5f60e2dde898fb5e6d71859778f0b786f09.zip gdb-26aca5f60e2dde898fb5e6d71859778f0b786f09.tar.gz gdb-26aca5f60e2dde898fb5e6d71859778f0b786f09.tar.bz2 |
gas/
2005-05-06 Jan Beulich <jbeulich@novell.com>
* cond.c (s_ifb): New.
* read.c (potable): Add s_ifb as handler for .ifb and .ifnb.
* read.h (s_ifb): Prototype.
* doc/as.texinfo: Document .ifb and .ifnb.
gas/testsuite/
2005-05-06 Jan Beulich <jbeulich@novell.com>
* gas/all/cond.s: Also test .ifb/.ifnb.
* gas/all/cond.d: Adjust.
Diffstat (limited to 'gas/doc/as.texinfo')
-rw-r--r-- | gas/doc/as.texinfo | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/gas/doc/as.texinfo b/gas/doc/as.texinfo index 7b14c0b..8186aba 100644 --- a/gas/doc/as.texinfo +++ b/gas/doc/as.texinfo @@ -4456,6 +4456,10 @@ Assembles the following section of code if the specified @var{symbol} has been defined. Note a symbol which has been referenced but not yet defined is considered to be undefined. +@cindex @code{ifb} directive +@item .ifb @var{text} +Assembles the following section of code if the operand is blank (empty). + @cindex @code{ifc} directive @item .ifc @var{string1},@var{string2} Assembles the following section of code if the two strings are the same. The @@ -4490,6 +4494,11 @@ to zero. @item .iflt @var{absolute expression} Assembles the following section of code if the argument is less than zero. +@cindex @code{ifnb} directive +@item .ifnb @var{text} +Like @code{.ifb}, but the sense of the test is reversed: this assembles the +following section of code if the operand is non-blank (non-empty). + @cindex @code{ifnc} directive @item .ifnc @var{string1},@var{string2}. Like @code{.ifc}, but the sense of the test is reversed: this assembles the |