Allow libcalls for complex memcpy when optimizing for size.
commita81ffd93b83c4be250514ff385b5b88fa5c3835b
authorJim Wilson <jimw@sifive.com>
Tue, 5 Nov 2019 22:34:40 +0000 (5 22:34 +0000)
committerJim Wilson <wilson@gcc.gnu.org>
Tue, 5 Nov 2019 22:34:40 +0000 (5 14:34 -0800)
tree9106ef9f8689bb7b61d0d78c63a1ad65f8dffe08
parent8aa76bb74696d0987e04a82ebcbc44f745ce788d
Allow libcalls for complex memcpy when optimizing for size.

The RISC-V backend wants to use a libcall when optimizing for size if
more than 6 instructions are needed.  Emit_move_complex asks for no
libcalls.  This case requires 8 insns for rv64 and 16 insns for rv32,
so we get fallback code that emits a loop.  Commit_one_edge_insertion
doesn't allow code inserted for a phi node on an edge to end with a
branch, and so this triggers an assertion.  This problem goes away if
we allow libcalls when optimizing for size, which gives the code the
RISC-V backend wants, and avoids triggering the assert.

gcc/
PR middle-end/92263
* expr.c (emit_move_complex): Only use BLOCK_OP_NO_LIBCALL when
optimize_insn_for_speed_p is true.

gcc/testsuite/
PR middle-end/92263
* gcc.dg/pr92263.c: New.

From-SVN: r277861
gcc/ChangeLog
gcc/expr.c
gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/pr92263.c [new file with mode: 0644]