https://gcc.gnu.org/bugzilla/show_bug.cgi?id=105706
--- Comment #2 from CVS Commits <cvs-commit at gcc dot gnu.org> --- The master branch has been updated by Kewen Lin <li...@gcc.gnu.org>: https://gcc.gnu.org/g:8fa8bca9f53fcfdedc2b4fa55093dbd1ab7abbd1 commit r13-721-g8fa8bca9f53fcfdedc2b4fa55093dbd1ab7abbd1 Author: Kewen Lin <li...@linux.ibm.com> Date: Tue May 24 01:00:40 2022 -0500 testsuite/rs6000: Adjust gcc.target/powerpc/pr78604.c [PR105706] Commit r13-707 adjusts the below gimple: iftmp.7_4 = _1 < _2 ? val2_7(D) : val1_8(D); to _3 = _1 >= _2; iftmp.7_4 = _3 ? val1_8(D) : val2_7(D); and result in one more vect_model_simple_cost dumping for each function. Need to adjust the match count accordingly. PR testsuite/105706 gcc/testsuite/ChangeLog: * gcc.target/powerpc/pr78604.c: Adjust.