From 2cb1807e1369032ea73b6924d041db6d561b236b Mon Sep 17 00:00:00 2001 From: David Edelsohn Date: Wed, 21 Feb 1996 17:25:13 +0000 Subject: [PATCH] (sparc_ip): Recognize %asr0. Yes, matra really wants this. --- gas/config/tc-sparc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; } } -- 2.34.1