* config/h8300/h8300.md (movsi_h8300hs): Make it 64-bit safe.

From-SVN: r45273
This commit is contained in:
Kazu Hirata 2001-08-29 18:21:07 +00:00 committed by Kazu Hirata
parent 366a7b2715
commit 5965bbf846
2 changed files with 5 additions and 1 deletions
gcc
ChangeLog
config/h8300

View File

@ -1,3 +1,7 @@
2001-08-29 Kazu Hirata <kazu@hxi.com>
* config/h8300/h8300.md (movsi_h8300hs): Make it 64-bit safe.
2001-08-29 Kazu Hirata <kazu@hxi.com>
* config/h8300/h8300-protos.h: Add a prototype for

View File

@ -448,7 +448,7 @@
/* Look for constants that can be obtained by subs, inc, and
dec to 0. */
switch (val)
switch (val & 0xffffffff)
{
case 0xffffffff:
return \"sub.l\\t%S0,%S0\;subs\\t#1,%S0\";