From: David Edelsohn Date: Wed, 21 Feb 1996 17:25:13 +0000 (+0000) Subject: (sparc_ip): Recognize %asr0. X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=2cb1807e1369032ea73b6924d041db6d561b236b;p=deliverable%2Fbinutils-gdb.git (sparc_ip): Recognize %asr0. Yes, matra really wants this. --- diff --git a/gas/config/tc-sparc.c b/gas/config/tc-sparc.c index d06d3b3870..ad8248b730 100644 --- a/gas/config/tc-sparc.c +++ b/gas/config/tc-sparc.c @@ -1018,9 +1018,9 @@ sparc_ip (str) } else { - if (num < 1 || 31 < num) + if (num < 0 || 31 < num) { - error_message = ": asr number must be between 1 and 31"; + error_message = ": asr number must be between 0 and 31"; goto error; } }