From 4964086a669532a4daf23aab3c2978a95af42594 Mon Sep 17 00:00:00 2001 From: Jeff Law Date: Tue, 7 Sep 1999 19:48:13 +0000 Subject: * config/tc-hppa.c (pa_ip): Support 'Z' argument. --- gas/config/tc-hppa.c | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'gas/config/tc-hppa.c') 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); -- cgit v1.1