https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100513
Jakub Jelinek <jakub at gcc dot gnu.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |jakub at gcc dot gnu.org
--- Comment #14 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
If you want to avoid that
if (lhs && TREE_CODE (lhs) == SSA_NAME)
SSA_NAME_DEF_STMT (lhs) = gs;
in gimple_call_set_lhs, I think it deserves a comment and probably
*gimple_call_lhs_ptr (new_stmt) = lhs;
would be cleaner than gimple_set_op (new_stmt, 0, lhs);