diff options
author | Jeff Law <law@redhat.com> | 1999-09-07 19:48:13 +0000 |
---|---|---|
committer | Jeff Law <law@redhat.com> | 1999-09-07 19:48:13 +0000 |
commit | 4964086a669532a4daf23aab3c2978a95af42594 (patch) | |
tree | 3b9bd4dd64734044905c5bc808619587ae057ebc /gas/config/tc-hppa.c | |
parent | 52d836e28f58122b8de7b5d1cb6439deeddb4620 (diff) | |
download | gdb-4964086a669532a4daf23aab3c2978a95af42594.zip gdb-4964086a669532a4daf23aab3c2978a95af42594.tar.gz gdb-4964086a669532a4daf23aab3c2978a95af42594.tar.bz2 |
* config/tc-hppa.c (pa_ip): Support 'Z' argument.
Diffstat (limited to 'gas/config/tc-hppa.c')
-rw-r--r-- | gas/config/tc-hppa.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/gas/config/tc-hppa.c b/gas/config/tc-hppa.c index 5f938c5..823238f 100644 --- a/gas/config/tc-hppa.c +++ b/gas/config/tc-hppa.c @@ -2830,6 +2830,17 @@ pa_ip (str) continue; } + /* Handle '%r1' implicit operand of addil instruction. */ + case 'Z': + if (*s == ',' && *(s + 1) == '%' && *(s + 3) == '1' + && (*(s + 2) == 'r' || *(s + 2) == 'R')) + { + s += 4; + continue; + } + else + break; + /* Handle a 2 bit shift count at 25. */ case '.': num = pa_get_absolute_expression (&the_insn, &s); |