aboutsummaryrefslogtreecommitdiff
path: root/gas/read.c
diff options
context:
space:
mode:
authorJan Beulich <jbeulich@novell.com>2005-05-06 06:38:11 +0000
committerJan Beulich <jbeulich@novell.com>2005-05-06 06:38:11 +0000
commit26aca5f60e2dde898fb5e6d71859778f0b786f09 (patch)
treee1c41eac4e28939c0e5bea623b454151f3cf0809 /gas/read.c
parenta580b8e05174aa8dd67b0bae41037182aba6b418 (diff)
downloadfsf-binutils-gdb-26aca5f60e2dde898fb5e6d71859778f0b786f09.zip
fsf-binutils-gdb-26aca5f60e2dde898fb5e6d71859778f0b786f09.tar.gz
fsf-binutils-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/read.c')
-rw-r--r--gas/read.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/gas/read.c b/gas/read.c
index e173a15..2165edf 100644
--- a/gas/read.c
+++ b/gas/read.c
@@ -343,6 +343,7 @@ static const pseudo_typeS potable[] = {
{"globl", s_globl, 0},
{"hword", cons, 2},
{"if", s_if, (int) O_ne},
+ {"ifb", s_ifb, 1},
{"ifc", s_ifc, 0},
{"ifdef", s_ifdef, 0},
{"ifeq", s_if, (int) O_eq},
@@ -351,6 +352,7 @@ static const pseudo_typeS potable[] = {
{"ifgt", s_if, (int) O_gt},
{"ifle", s_if, (int) O_le},
{"iflt", s_if, (int) O_lt},
+ {"ifnb", s_ifb, 0},
{"ifnc", s_ifc, 1},
{"ifndef", s_ifdef, 1},
{"ifne", s_if, (int) O_ne},