From c12ddda48feb239c92cdfea4c24f44c15647593b Mon Sep 17 00:00:00 2001 From: sebastianperta Date: Mon, 19 Feb 2018 15:15:07 +0000 Subject: [PATCH] 2018-02-19 Sebastian Perta * config/rl78/rl78.md (movdf): New define expand. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@257807 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/ChangeLog | 4 ++++ gcc/config/rl78/rl78.md | 8 ++++++++ 2 files changed, 12 insertions(+) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 0fa0da58404..eac7dfbf8e9 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2018-02-19 Sebastian Perta + + * config/rl78/rl78.md (movdf): New define expand. + 2018-02-19 Martin Liska PR other/80589 diff --git a/gcc/config/rl78/rl78.md b/gcc/config/rl78/rl78.md index 2b39b469ef5..03b776b6191 100644 --- a/gcc/config/rl78/rl78.md +++ b/gcc/config/rl78/rl78.md @@ -727,6 +727,14 @@ DONE;" ) +(define_expand "movdf" + [(set (match_operand:DF 0 "nonimmediate_operand" "") + (match_operand:DF 1 "general_operand" ""))] + "" + "rl78_split_movdi(operands, DFmode); + DONE;" +) + (define_expand "umindi3" [(set (match_operand:DI 0 "nonimmediate_operand" "") (umin:DI (match_operand:DI 1 "general_operand" "") -- 2.11.4.GIT