public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* [PATCH] aarch64: Fix dejaGNU directive in clastb_8.c testcase
@ 2020-09-17 14:30 Andrea Corallo
  2020-09-17 16:50 ` Richard Sandiford
  0 siblings, 1 reply; 3+ messages in thread
From: Andrea Corallo @ 2020-09-17 14:30 UTC (permalink / raw)
  To: gcc-patches; +Cc: kyrylo.tkachov, richard.earnshaw, christophe.lyon, nd

[-- Attachment #1: Type: text/plain, Size: 316 bytes --]

Hi all,

this is to fix a typo in a dejaGNU directive introduced with
with 052204fac58 "vec: don't select partial vectors when 
unnecessary".

Okay for trunk?

gcc/testsuite/ChangeLog

2020-09-17  Andre Corallo  <andrea.corallo@arm.com>

	* gcc.target/aarch64/sve/clastb_8.c: Fix a dg-final scan
	directive
        

[-- Attachment #2: 0001-aarch64-Fix-dejaGNU-directive-in-clastb_8.c-testcase.patch --]
[-- Type: text/plain, Size: 1187 bytes --]

From 6628a4bbfa909ac2fda789e549c7e7067ecaddad Mon Sep 17 00:00:00 2001
From: Andrea Corallo <andrea.corallo@arm.com>
Date: Thu, 17 Sep 2020 15:36:22 +0200
Subject: [PATCH] aarch64: Fix dejaGNU directive in clastb_8.c testcase

gcc/testsuite/ChangeLog

2020-09-17  Andre Corallo  <andrea.corallo@arm.com>

	* gcc.target/aarch64/sve/clastb_8.c: Fix a dg-final scan
	directive.
---
 gcc/testsuite/gcc.target/aarch64/sve/clastb_8.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gcc/testsuite/gcc.target/aarch64/sve/clastb_8.c b/gcc/testsuite/gcc.target/aarch64/sve/clastb_8.c
index e61ff4ac92d..49a91616e84 100644
--- a/gcc/testsuite/gcc.target/aarch64/sve/clastb_8.c
+++ b/gcc/testsuite/gcc.target/aarch64/sve/clastb_8.c
@@ -23,4 +23,4 @@ TEST_TYPE (uint64_t);
 /* { dg-final { scan-assembler {\tclastb\t(h[0-9]+), p[0-7], \1, z[0-9]+\.h\n} } } */
 /* { dg-final { scan-assembler {\tclastb\t(s[0-9]+), p[0-7], \1, z[0-9]+\.s\n} } } */
 /* { dg-final { scan-assembler {\tclastb\t(d[0-9]+), p[0-7], \1, z[0-9]+\.d\n} } } */
-/* { dg-final { scan-assembler {\tptrue\tp[0-9]+\.b,} 4 } } */
+/* { dg-final { scan-assembler-times {\tptrue\tp[0-9]+\.b,} 4 } } */
-- 
2.17.1


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] aarch64: Fix dejaGNU directive in clastb_8.c testcase
  2020-09-17 14:30 [PATCH] aarch64: Fix dejaGNU directive in clastb_8.c testcase Andrea Corallo
@ 2020-09-17 16:50 ` Richard Sandiford
  2020-09-17 17:35   ` Andrea Corallo
  0 siblings, 1 reply; 3+ messages in thread
From: Richard Sandiford @ 2020-09-17 16:50 UTC (permalink / raw)
  To: Andrea Corallo; +Cc: gcc-patches, nd, richard.earnshaw

Andrea Corallo <andrea.corallo@arm.com> writes:
> Hi all,
>
> this is to fix a typo in a dejaGNU directive introduced with
> with 052204fac58 "vec: don't select partial vectors when 
> unnecessary".
>
> Okay for trunk?

OK, thanks.  FWIW, this would also have been OK under the
“obviously correct” rule (but asking is obviously OK too :-))

Richard

>
> gcc/testsuite/ChangeLog
>
> 2020-09-17  Andre Corallo  <andrea.corallo@arm.com>
>
> 	* gcc.target/aarch64/sve/clastb_8.c: Fix a dg-final scan
> 	directive
>         
>
> From 6628a4bbfa909ac2fda789e549c7e7067ecaddad Mon Sep 17 00:00:00 2001
> From: Andrea Corallo <andrea.corallo@arm.com>
> Date: Thu, 17 Sep 2020 15:36:22 +0200
> Subject: [PATCH] aarch64: Fix dejaGNU directive in clastb_8.c testcase
>
> gcc/testsuite/ChangeLog
>
> 2020-09-17  Andre Corallo  <andrea.corallo@arm.com>
>
> 	* gcc.target/aarch64/sve/clastb_8.c: Fix a dg-final scan
> 	directive.
> ---
>  gcc/testsuite/gcc.target/aarch64/sve/clastb_8.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/gcc/testsuite/gcc.target/aarch64/sve/clastb_8.c b/gcc/testsuite/gcc.target/aarch64/sve/clastb_8.c
> index e61ff4ac92d..49a91616e84 100644
> --- a/gcc/testsuite/gcc.target/aarch64/sve/clastb_8.c
> +++ b/gcc/testsuite/gcc.target/aarch64/sve/clastb_8.c
> @@ -23,4 +23,4 @@ TEST_TYPE (uint64_t);
>  /* { dg-final { scan-assembler {\tclastb\t(h[0-9]+), p[0-7], \1, z[0-9]+\.h\n} } } */
>  /* { dg-final { scan-assembler {\tclastb\t(s[0-9]+), p[0-7], \1, z[0-9]+\.s\n} } } */
>  /* { dg-final { scan-assembler {\tclastb\t(d[0-9]+), p[0-7], \1, z[0-9]+\.d\n} } } */
> -/* { dg-final { scan-assembler {\tptrue\tp[0-9]+\.b,} 4 } } */
> +/* { dg-final { scan-assembler-times {\tptrue\tp[0-9]+\.b,} 4 } } */

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] aarch64: Fix dejaGNU directive in clastb_8.c testcase
  2020-09-17 16:50 ` Richard Sandiford
@ 2020-09-17 17:35   ` Andrea Corallo
  0 siblings, 0 replies; 3+ messages in thread
From: Andrea Corallo @ 2020-09-17 17:35 UTC (permalink / raw)
  To: gcc-patches; +Cc: nd, richard.earnshaw, richard.sandiford

Richard Sandiford <richard.sandiford@arm.com> writes:

> OK, thanks.  FWIW, this would also have been OK under the
> “obviously correct” rule (but asking is obviously OK too :-))
>
> Richard

Installed as ee7aa7e7b9d

Thanks for having a look and for the info!

  Andrea

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2020-09-17 17:35 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-09-17 14:30 [PATCH] aarch64: Fix dejaGNU directive in clastb_8.c testcase Andrea Corallo
2020-09-17 16:50 ` Richard Sandiford
2020-09-17 17:35   ` Andrea Corallo

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).