(andsi3): Mask immed op to 0xff in QI-reg ff00-byte case.

From-SVN: r2704
This commit is contained in:
Richard Stallman 1992-11-06 09:44:25 +00:00
parent d58243d112
commit f3f0d311cd
1 changed files with 1 additions and 1 deletions

View File

@ -1832,7 +1832,7 @@
return AS2 (mov%B0,%2,%h0);
}
operands[2] = GEN_INT (INTVAL (operands[2]) >> 8);
operands[2] = GEN_INT ((INTVAL (operands[2]) >> 8) & 0xff);
return AS2 (and%B0,%2,%h0);
}