expand: Fix up expand_cond_expr_using_cmove [PR106030]
authorJakub Jelinek <jakub@redhat.com>
Tue, 21 Jun 2022 09:38:59 +0000 (11:38 +0200)
committerJakub Jelinek <jakub@redhat.com>
Tue, 28 Jun 2022 15:33:48 +0000 (17:33 +0200)
commitd068623e5b109e635e2ec2acfcf15e7c50c7f15c
treec79b88e80af0a296f0b0d5da911e99ab5e333163
parentd67dfc5f80e537460ebf809758a0e673028ebad7
expand: Fix up expand_cond_expr_using_cmove [PR106030]

If expand_cond_expr_using_cmove can't find a cmove optab for a particular
mode, it tries to promote the mode and perform the cmove in the promoted
mode.

The testcase in the patch ICEs on arm because in that case we pass temp which
has the promoted mode (SImode) as target to expand_operands where the
operands have the non-promoted mode (QImode).
Later on the function uses paradoxical subregs:
  if (GET_MODE (op1) != mode)
    op1 = gen_lowpart (mode, op1);

  if (GET_MODE (op2) != mode)
    op2 = gen_lowpart (mode, op2);
to change the operand modes.

The following patch fixes it by passing NULL_RTX as target if it has
promoted mode.

2022-06-21  Jakub Jelinek  <jakub@redhat.com>

PR middle-end/106030
* expr.cc (expand_cond_expr_using_cmove): Pass NULL_RTX instead of
temp to expand_operands if mode has been promoted.

* gcc.c-torture/compile/pr106030.c: New test.

(cherry picked from commit 2df1df945fac85d7b3d084001414a66a2709d8fe)
gcc/expr.cc
gcc/testsuite/gcc.c-torture/compile/pr106030.c [new file with mode: 0644]