https://gcc.gnu.org/bugzilla/show_bug.cgi?id=117712

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|needs-bisection             |
   Last reconfirmed|                            |2024-11-20
             Status|UNCONFIRMED                 |NEW
           See Also|                            |https://gcc.gnu.org/bugzill
                   |                            |a/show_bug.cgi?id=117525
     Ever confirmed|0                           |1

--- Comment #2 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
```
(define_expand "fix_trunchfsi2"
  [(set (match_operand:SI         0 "general_operand")
        (fix:SI (fix:HF (match_operand:HF 1 "general_operand"))))]
  "TARGET_EITHER"
  "
  {
    rtx op1 = convert_to_mode (SFmode, operands[1], 0);
    expand_fix (operands[0], op1, 0);
    DONE;
  }"
)
```

Similar to PR 117525.

Eric B. reported this will be an issue for sparc too: 
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=117525#c16

Reply via email to