From: Tamar Christina Date: Tue, 4 Mar 2025 11:15:26 +0000 (+0000) Subject: aarch64: force operand to fresh register to avoid subreg issues [PR118892] X-Git-Tag: basepoints/gcc-16~1744 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d883f3233c4b7e0dce52539a12dfcccc8aff43e4;p=thirdparty%2Fgcc.git aarch64: force operand to fresh register to avoid subreg issues [PR118892] When the input is already a subreg and we try to make a paradoxical subreg out of it for copysign this can fail if it violates the subreg relationship. Use force_lowpart_subreg instead of lowpart_subreg to then force the results to a register instead of ICEing. gcc/ChangeLog: PR target/118892 * config/aarch64/aarch64.md (copysign3): Use force_lowpart_subreg instead of lowpart_subreg. gcc/testsuite/ChangeLog: PR target/118892 * gcc.target/aarch64/copysign-pr118892.c: New test. --- diff --git a/gcc/config/aarch64/aarch64.md b/gcc/config/aarch64/aarch64.md index cfe730f3732..b10059e4f58 100644 --- a/gcc/config/aarch64/aarch64.md +++ b/gcc/config/aarch64/aarch64.md @@ -7480,7 +7480,7 @@ { emit_insn (gen_ior3 ( lowpart_subreg (mode, operands[0], mode), - lowpart_subreg (mode, operands[1], mode), + force_lowpart_subreg (mode, operands[1], mode), v_bitmask)); DONE; } diff --git a/gcc/testsuite/gcc.target/aarch64/copysign-pr118892.c b/gcc/testsuite/gcc.target/aarch64/copysign-pr118892.c new file mode 100644 index 00000000000..adfa30dc3e2 --- /dev/null +++ b/gcc/testsuite/gcc.target/aarch64/copysign-pr118892.c @@ -0,0 +1,11 @@ +/* { dg-do compile } */ +/* { dg-options "-Ofast" } */ + +double l(); +double f() +{ + double t6[2] = {l(), l()}; + double t7[2]; + __builtin_memcpy(&t7, &t6, sizeof(t6)); + return -__builtin_fabs(t7[1]); +}