From c3a50b1588cb1ce793a7bc26e0c44e77e5493a8b Mon Sep 17 00:00:00 2001 From: hjl Date: Mon, 16 Apr 2007 13:49:14 +0000 Subject: [PATCH] 2007-04-16 H.J. Lu PR target/31582 * config/i386/i386.c (ix86_expand_vec_set_builtin): Make a copy of source, pass it to ix86_expand_vector_set and return it as target. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@123866 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/ChangeLog | 9 ++++++++- gcc/config/i386/i386.c | 10 +++++++--- 2 files changed, 15 insertions(+), 4 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index d2560018b8e..401d2a56fb9 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,12 @@ +2007-04-16 H.J. Lu + + PR target/31582 + * config/i386/i386.c (ix86_expand_vec_set_builtin): Make a + copy of source, pass it to ix86_expand_vector_set and return + it as target. + 2007-04-16 David Ung - Joseph Myers + Joseph Myers * config/mips/mips.h (PROCESSOR_74KC, PROCESSOR_74KF, PROCESSOR_74KX, TUNE_74K, GENERATE_MADD_MSUB): Define. diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c index 9f4ed758079..ecc2e6bb1c7 100644 --- a/gcc/config/i386/i386.c +++ b/gcc/config/i386/i386.c @@ -17902,7 +17902,7 @@ ix86_expand_vec_set_builtin (tree exp) enum machine_mode tmode, mode1; tree arg0, arg1, arg2; int elt; - rtx op0, op1; + rtx op0, op1, target; arg0 = CALL_EXPR_ARG (exp, 0); arg1 = CALL_EXPR_ARG (exp, 1); @@ -17922,9 +17922,13 @@ ix86_expand_vec_set_builtin (tree exp) op0 = force_reg (tmode, op0); op1 = force_reg (mode1, op1); - ix86_expand_vector_set (true, op0, op1, elt); + /* OP0 is the source of these builtin functions and shouldn't be + modifified. Create a copy, use it and return it as target. */ + target = gen_reg_rtx (tmode); + emit_move_insn (target, op0); + ix86_expand_vector_set (true, target, op1, elt); - return op0; + return target; } /* Expand an expression EXP that calls a built-in function, -- 2.11.0