[committed] testsuite/rs6000: Adjust gcc.target/powerpc/pr78604.c [PR105706]

Message ID defede1c-d420-83c7-d7f6-721b9cad115f@linux.ibm.com
State Committed
Commit 8fa8bca9f53fcfdedc2b4fa55093dbd1ab7abbd1
Headers
Series [committed] testsuite/rs6000: Adjust gcc.target/powerpc/pr78604.c [PR105706] |

Commit Message

Kewen.Lin May 24, 2022, 6:21 a.m. UTC
  Hi,

Tested on powerpc64le-linux-gnu P8.

Pushed this as r13-721-g8fa8bca9f53fcfdedc2b4fa55093dbd1ab7abbd1.

BR,
Kewen
-----
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.
---
 gcc/testsuite/gcc.target/powerpc/pr78604.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

--
2.27.0
  

Patch

diff --git a/gcc/testsuite/gcc.target/powerpc/pr78604.c b/gcc/testsuite/gcc.target/powerpc/pr78604.c
index 35bfdb35412..7a371af8c28 100644
--- a/gcc/testsuite/gcc.target/powerpc/pr78604.c
+++ b/gcc/testsuite/gcc.target/powerpc/pr78604.c
@@ -109,4 +109,6 @@  uns_gte (UNS_TYPE val1, UNS_TYPE val2)
 /* { dg-final { scan-assembler-times {\mvcmpgtsd\M} 4 } } */
 /* { dg-final { scan-assembler-times {\mvcmpgtud\M} 4 } } */
 /* { dg-final { scan-assembler-not   {\mvcmpequd\M} } } */
-/* { dg-final { scan-tree-dump-times "vect_model_simple_cost" 8 "vect" } } */
+/* For each function, one is for the comparison statement and the other
+   is for the condition statement which consumes the compared result.  */
+/* { dg-final { scan-tree-dump-times "vect_model_simple_cost" 16 "vect" } } */