https://gcc.gnu.org/bugzilla/show_bug.cgi?id=126622
--- Comment #4 from GCC Commits <cvs-commit at gcc dot gnu.org> --- The master branch has been updated by Kael Andrew Franco <[email protected]>: https://gcc.gnu.org/g:3888feef0313026a2da5db1321bcc84181eb1ffc commit r17-4009-g3888feef0313026a2da5db1321bcc84181eb1ffc Author: Kael Andrew Alonzo Franco <[email protected]> Date: Tue Sep 8 15:59:21 2026 -0400 fortran: Convert build_int_cst (NULL_TREE, cst). [PR126622] build_int_cst converts NULL_TREE to integer_type_node. Use build_int_cst (integer_type_node, cst) to remove build_int_cst_type in the future. Bootstrapped and regtested on x86_64-pc-linux-gnu. PR middle-end/126622 gcc/fortran/ChangeLog: * trans-intrinsic.cc (conv_intrinsic_atomic_op): Use build_int_cst (integer_type_node, cst). (conv_intrinsic_atomic_cas): Ditto. Reviewed-by: Richard Biener <[email protected]> Signed-off-by: Kael Andrew Franco <[email protected]>
