[Bug rtl-optimization/115049] [14/15 Regression] Silent severe miscompilation around inline functions
cvs-commit at gcc dot gnu.org
gcc-bugzilla@gcc.gnu.org
Thu Jul 18 13:22:59 GMT 2024
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115049
--- Comment #15 from GCC Commits <cvs-commit at gcc dot gnu.org> ---
The releases/gcc-14 branch has been updated by Jonathan Yong
<jyong@gcc.gnu.org>:
https://gcc.gnu.org/g:747c4b58573ea00419f64293a61537eb69f43307
commit r14-10460-g747c4b58573ea00419f64293a61537eb69f43307
Author: LIU Hao <lh_mouse@126.com>
Date: Mon Jul 15 16:55:52 2024 +0800
Do not use caller-saved registers for COMDAT functions
A reference to a COMDAT function may be resolved to another definition
outside the current translation unit, so it's not eligible for `-fipa-ra`.
In `decl_binds_to_current_def_p()` there is already a check for weak
symbols. This commit checks for COMDAT functions that are not implemented
as weak symbols, for example, on *-*-mingw32.
gcc/ChangeLog:
PR rtl-optimization/115049
* varasm.cc (decl_binds_to_current_def_p): Add a check for COMDAT
declarations too, like weak ones.
(cherry picked from commit 5080840d8fbf25a321dd27543a1462d393d338bc)
More information about the Gcc-bugs
mailing list