https://gcc.gnu.org/bugzilla/show_bug.cgi?id=117349
--- Comment #2 from GCC Commits <cvs-commit at gcc dot gnu.org> --- The trunk branch has been updated by Andrew Pinski <pins...@gcc.gnu.org>: https://gcc.gnu.org/g:9dd9a88b75334bc079b8ab5fb2dbb5d56765bd60 commit r15-4754-g9dd9a88b75334bc079b8ab5fb2dbb5d56765bd60 Author: Andrew Pinski <quic_apin...@quicinc.com> Date: Tue Oct 29 13:01:30 2024 -0700 aarch64: Remove unnecessary casts to rtx_code [PR117349] In aarch64_gen_ccmp_first/aarch64_gen_ccmp_next, the casts were no longer needed after r14-3412-gbf64392d66f291 which changed the type of the arguments to rtx_code. In aarch64_rtx_costs, they were no longer needed since r12-4828-g1d5c43db79b7ea which changed the type of code to rtx_code. Pushed as obvious after a build/test for aarch64-linux-gnu. gcc/ChangeLog: PR target/117349 * config/aarch64/aarch64.cc (aarch64_rtx_costs): Remove unnecessary casts to rtx_code. (aarch64_gen_ccmp_first): Likewise. (aarch64_gen_ccmp_next): Likewise. Signed-off-by: Andrew Pinski <quic_apin...@quicinc.com>