mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-02-22 06:49:19 +08:00
* config/m68k/m68k.md (ashrdi_const): Fix right shift by 16.
From-SVN: r43100
This commit is contained in:
parent
d25e11935b
commit
54c6cfdcb6
@ -1,3 +1,7 @@
|
||||
2001-06-09 Peter Jakubek <pjak@snafu.de>
|
||||
|
||||
* config/m68k/m68k.md (ashrdi_const): Fix right shift by 16.
|
||||
|
||||
2001-06-09 John David Anglin <dave@hiauly1.hia.nrc.ca>
|
||||
|
||||
* vax.h (NOTICE_UPDATE_CC): Set CC_NO_OVERFLOW in cc_status.flags
|
||||
|
@ -4805,7 +4805,7 @@
|
||||
else if (INTVAL (operands[2]) == 8)
|
||||
return \"move%.b %0,%1\;asr%.l %#8,%0\;ror%.l %#8,%1\";
|
||||
else if (INTVAL (operands[2]) == 16)
|
||||
return \"move%.w %0,%1\;clr%.w %0\;swap %1\;ext%.l %0\";
|
||||
return \"move%.w %0,%1\;swap %0\;ext%.l %0\;swap %1\";
|
||||
else if (INTVAL (operands[2]) == 48)
|
||||
return \"swap %0\;ext%.l %0\;move%.l %0,%1\;smi %0\;ext%.w %0\";
|
||||
else if (INTVAL (operands[2]) == 31)
|
||||
|
Loading…
Reference in New Issue
Block a user