From 1a59ed967a34cb732aff41e65829e5464a347089 Mon Sep 17 00:00:00 2001 From: amylaar Date: Thu, 4 Jul 2002 07:02:48 +0000 Subject: [PATCH] * sh.md (mshfhi_b, mshflo_b, mshfhi_l, mshflo_l, mshfhi_w): Add DONE. (mshflo_w): Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@55235 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/ChangeLog | 5 +++++ gcc/config/sh/sh.md | 6 ++++++ 2 files changed, 11 insertions(+) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 4209d2955c4..4f5958a58a9 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +Thu Jul 4 07:58:01 2002 J"orn Rennecke + + * sh.md (mshfhi_b, mshflo_b, mshfhi_l, mshflo_l, mshfhi_w): Add DONE. + (mshflo_w): Likewise. + Thu Jul 4 07:36:29 2002 J"orn Rennecke * simplify-rtx.c (simplify_subreg): Reduce problem of finding diff --git a/gcc/config/sh/sh.md b/gcc/config/sh/sh.md index 4265de20d25..0894f9ff632 100644 --- a/gcc/config/sh/sh.md +++ b/gcc/config/sh/sh.md @@ -9503,6 +9503,7 @@ { emit_insn ((TARGET_LITTLE_ENDIAN ? gen_mshf4_b : gen_mshf0_b) (operands[0], operands[1], operands[2])); + DONE; }") (define_expand "mshflo_b" @@ -9514,6 +9515,7 @@ { emit_insn ((TARGET_LITTLE_ENDIAN ? gen_mshf0_b : gen_mshf4_b) (operands[0], operands[1], operands[2])); + DONE; }") (define_insn "mshf4_b" @@ -9553,6 +9555,7 @@ { emit_insn ((TARGET_LITTLE_ENDIAN ? gen_mshf4_l : gen_mshf0_l) (operands[0], operands[1], operands[2])); + DONE; }") (define_expand "mshflo_l" @@ -9564,6 +9567,7 @@ { emit_insn ((TARGET_LITTLE_ENDIAN ? gen_mshf0_l : gen_mshf4_l) (operands[0], operands[1], operands[2])); + DONE; }") (define_insn "mshf4_l" @@ -9599,6 +9603,7 @@ { emit_insn ((TARGET_LITTLE_ENDIAN ? gen_mshf4_w : gen_mshf0_w) (operands[0], operands[1], operands[2])); + DONE; }") (define_expand "mshflo_w" @@ -9610,6 +9615,7 @@ { emit_insn ((TARGET_LITTLE_ENDIAN ? gen_mshf0_w : gen_mshf4_w) (operands[0], operands[1], operands[2])); + DONE; }") (define_insn "mshf4_w" -- 2.11.4.GIT