Commit 4db18574 by Richard Stallman

*** empty log message ***

From-SVN: r258
parent ff57c94e
......@@ -718,7 +718,11 @@ reg_class_record (op, opno, constraints)
case '4':
/* If constraint says "match another operand",
use that operand's constraint to choose preferences. */
next = constraints[*p - '0'];
if (*p - '0' < opno)
{
opno = *p - '0';
next = constraints[opno];
}
break;
default:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment