(sparc_ip): Recognize %asr0.

Yes, matra really wants this.
This commit is contained in:
David Edelsohn 1996-02-21 17:25:13 +00:00
parent 5c59ec4318
commit 2cb1807e13
1 changed files with 2 additions and 2 deletions

View File

@ -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;
}
}