Commit fe9f823f by Jeff Law

i386.md (movqi): When optimizing a load of (const_int 1) into a NON_QI_REG_P...

p
        * i386.md (movqi): When optimizing a load of (const_int 1) into a
        NON_QI_REG_P, pretend the register is SImode.
Fixes minor egcs-1.1 regression.

From-SVN: r21490
parent 3192f024
......@@ -1109,7 +1109,7 @@
/* Fastest way to change a 0 to a 1.
If inc%B0 isn't allowed, use inc%L0. */
if (NON_QI_REG_P (operands[0]))
return AS1 (inc%L0,%0);
return AS1 (inc%L0,%k0);
else
return AS1 (inc%B0,%0);
}
......
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