https://gcc.gnu.org/bugzilla/show_bug.cgi?id=120101
--- Comment #3 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:2fda72d1315b72e9d43b05da2f260e5c59aaad41 commit r16-2435-g2fda72d1315b72e9d43b05da2f260e5c59aaad41 Author: Andrew Pinski <quic_apin...@quicinc.com> Date: Tue Jul 22 22:11:29 2025 -0700 testsuite: Mark fn1 in pr81627.c as noinline [PR120101] Since r16-372-g064cac730f88dc fn1 is now inlined into main which meant the scan dump was failing since it was looking for it only once. Marking fn1 as noinline gets us back to the old behavior and no longer dependent on the inliner. Pushed as obvious after a quick test. PR testsuite/120101 gcc/testsuite/ChangeLog: * gcc.dg/tree-ssa/pr81627.c (fn1): Mark as noinline. Signed-off-by: Andrew Pinski <quic_apin...@quicinc.com>