Commit 90e65b70 by Alexandre Oliva Committed by Alexandre Oliva

sh.md (ic_invalidate_line): Make sure the immediate constant is a valid sign-extension for Pmode.

* config/sh/sh.md (ic_invalidate_line): Make sure the immediate
constant is a valid sign-extension for Pmode.

From-SVN: r49451
parent e7daa976
2002-02-02 Alexandre Oliva <aoliva@redhat.com>
* config/sh/sh.md (ic_invalidate_line): Make sure the immediate
constant is a valid sign-extension for Pmode.
2002-02-02 Kazu Hirata <kazu@hxi.com>
* config/h8300/h8300.c: Fix formatting.
......
......@@ -2501,7 +2501,8 @@
"
{
operands[0] = force_reg (Pmode, operands[0]);
operands[1] = force_reg (Pmode, GEN_INT (0xf0000008));
operands[1] = force_reg (Pmode, GEN_INT (trunc_int_for_mode (0xf0000008,
Pmode)));
}")
;; The address %0 is assumed to be 4-aligned at least. Thus, by ORing
......
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