From 90e65b7084d00d88e68c73d57fa144a7be68f96a Mon Sep 17 00:00:00 2001 From: Alexandre Oliva Date: Sun, 3 Feb 2002 00:50:50 +0000 Subject: [PATCH] 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 --- gcc/ChangeLog | 5 +++++ gcc/config/sh/sh.md | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index cde41956626..0057ca74666 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2002-02-02 Alexandre Oliva + + * config/sh/sh.md (ic_invalidate_line): Make sure the immediate + constant is a valid sign-extension for Pmode. + 2002-02-02 Kazu Hirata * config/h8300/h8300.c: Fix formatting. diff --git a/gcc/config/sh/sh.md b/gcc/config/sh/sh.md index 9b54d29e7ca..24fbacc6e6a 100644 --- a/gcc/config/sh/sh.md +++ b/gcc/config/sh/sh.md @@ -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 -- 2.30.2