Commit 5965bbf8 by Kazu Hirata Committed by Kazu Hirata

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

From-SVN: r45273
parent 366a7b27
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
emit_logical_op.
* config/h8300/h8300.c (emit_logical_op): New.
......
......@@ -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\";
......
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