|
|
5ae6c5 |
From 023c5b36e476976cb3b45ff32c7c64990c5a6d45 Mon Sep 17 00:00:00 2001
|
|
|
5ae6c5 |
From: Kewen Lin <linkw@linux.ibm.com>
|
|
|
5ae6c5 |
Date: Thu, 1 Sep 2022 00:27:11 -0500
|
|
|
5ae6c5 |
Subject: [PATCH] rs6000/test: Fix typo in pr86731-fwrapv-longlong.c [PR106682]
|
|
|
5ae6c5 |
|
|
|
5ae6c5 |
Commit r12-2266 updated the scanned assembly content from
|
|
|
5ae6c5 |
|
|
|
5ae6c5 |
"{\mlvx\M|\mlxv\M|\mlxvd2x\M}"
|
|
|
5ae6c5 |
|
|
|
5ae6c5 |
to
|
|
|
5ae6c5 |
|
|
|
5ae6c5 |
"{\mp?lxv\M|\mlxv\M|\mlxvd2x\M}"
|
|
|
5ae6c5 |
|
|
|
5ae6c5 |
for the test case pr86731-fwrapv-longlong.c unexpectedly.
|
|
|
5ae6c5 |
|
|
|
5ae6c5 |
It's meant to update "lxv" to "p?lxv", should leave the
|
|
|
5ae6c5 |
"lvx" unchanged. So fix the typo accordingly.
|
|
|
5ae6c5 |
|
|
|
5ae6c5 |
PR testsuite/106682
|
|
|
5ae6c5 |
|
|
|
5ae6c5 |
gcc/testsuite/ChangeLog:
|
|
|
5ae6c5 |
|
|
|
5ae6c5 |
* gcc.target/powerpc/pr86731-fwrapv-longlong.c: Fix typo.
|
|
|
5ae6c5 |
---
|
|
|
5ae6c5 |
gcc/testsuite/gcc.target/powerpc/pr86731-fwrapv-longlong.c | 2 +-
|
|
|
5ae6c5 |
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
5ae6c5 |
|
|
|
5ae6c5 |
diff --git a/gcc/testsuite/gcc.target/powerpc/pr86731-fwrapv-longlong.c b/gcc/testsuite/gcc.target/powerpc/pr86731-fwrapv-longlong.c
|
|
|
5ae6c5 |
index dcb30e1d886..018e1cf9749 100644
|
|
|
5ae6c5 |
--- a/gcc/testsuite/gcc.target/powerpc/pr86731-fwrapv-longlong.c
|
|
|
5ae6c5 |
+++ b/gcc/testsuite/gcc.target/powerpc/pr86731-fwrapv-longlong.c
|
|
|
5ae6c5 |
@@ -31,5 +31,5 @@ vector signed long long splats4(void)
|
|
|
5ae6c5 |
|
|
|
5ae6c5 |
/* { dg-final { scan-assembler-times {\mvspltis[bhw]\M} 0 } } */
|
|
|
5ae6c5 |
/* { dg-final { scan-assembler-times {\mvsl[bhwd]\M} 0 } } */
|
|
|
5ae6c5 |
-/* { dg-final { scan-assembler-times {\mp?lxv\M|\mlxv\M|\mlxvd2x\M|\mxxspltidp\M} 2 } } */
|
|
|
5ae6c5 |
+/* { dg-final { scan-assembler-times {\mp?lxv\M|\mlvx\M|\mlxvd2x\M|\mxxspltidp\M} 2 } } */
|
|
|
5ae6c5 |
|
|
|
5ae6c5 |
--
|
|
|
5ae6c5 |
2.31.1
|
|
|
5ae6c5 |
|