mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-03-08 10:57:12 +08:00
* m68k.md (zero_extend QI to HI): Correctly handle TARGET_5200.
From-SVN: r20981
This commit is contained in:
parent
79325812b8
commit
7edf1e0416
@ -1,3 +1,7 @@
|
||||
Tue Jul 7 00:44:35 1998 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
|
||||
|
||||
* m68k.md (zero_extend QI to HI): Correctly handle TARGET_5200.
|
||||
|
||||
Tue Jul 7 00:36:41 1998 Ulrich Drepper <drepper@cygnus.com>
|
||||
|
||||
* i386.c: Remove random whitespace at end of lines.
|
||||
|
@ -1584,9 +1584,10 @@
|
||||
{
|
||||
if (GET_CODE (operands[1]) == REG
|
||||
&& REGNO (operands[0]) == REGNO (operands[1]))
|
||||
return \"and%.w %#0xFF,%0\";
|
||||
return (!TARGET_5200 ? \"and%.w %#0xFF,%0\" : \"and%.l %#0xFF,%0\");
|
||||
if (reg_mentioned_p (operands[0], operands[1]))
|
||||
return \"move%.b %1,%0\;and%.w %#0xFF,%0\";
|
||||
return (!TARGET_5200 ? \"move%.b %1,%0\;and%.w %#0xFF,%0\"
|
||||
: \"move%.b %1,%0\;and%.l %#0xFF,%0\");
|
||||
return \"clr%.w %0\;move%.b %1,%0\";
|
||||
}
|
||||
else if (GET_CODE (operands[0]) == MEM
|
||||
|
Loading…
Reference in New Issue
Block a user