public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* [PATCH] aarch64: testsuite: Explicitly add -mlittle-endian to vget_low_2.c
@ 2024-05-23  1:00 Pengxuan Zheng
  2024-05-30 10:48 ` Richard Sandiford
  0 siblings, 1 reply; 4+ messages in thread
From: Pengxuan Zheng @ 2024-05-23  1:00 UTC (permalink / raw)
  To: gcc-patches; +Cc: Pengxuan Zheng

vget_low_2.c is a test case for little-endian, but we missed the -mlittle-endian
flag in r15-697-ga2e4fe5a53cf75.

gcc/testsuite/ChangeLog:

	* gcc.target/aarch64/vget_low_2.c: Add -mlittle-endian.

Signed-off-by: Pengxuan Zheng <quic_pzheng@quicinc.com>
---
 gcc/testsuite/gcc.target/aarch64/vget_low_2.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gcc/testsuite/gcc.target/aarch64/vget_low_2.c b/gcc/testsuite/gcc.target/aarch64/vget_low_2.c
index 44414e1c043..93e9e664ee9 100644
--- a/gcc/testsuite/gcc.target/aarch64/vget_low_2.c
+++ b/gcc/testsuite/gcc.target/aarch64/vget_low_2.c
@@ -1,5 +1,5 @@
 /* { dg-do compile } */
-/* { dg-options "-O3 -fdump-tree-optimized" } */
+/* { dg-options "-O3 -fdump-tree-optimized -mlittle-endian" } */
 
 #include <arm_neon.h>
 
-- 
2.17.1


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

* Re: [PATCH] aarch64: testsuite: Explicitly add -mlittle-endian to vget_low_2.c
  2024-05-23  1:00 [PATCH] aarch64: testsuite: Explicitly add -mlittle-endian to vget_low_2.c Pengxuan Zheng
@ 2024-05-30 10:48 ` Richard Sandiford
  2024-05-30 22:59   ` Pengxuan Zheng (QUIC)
  0 siblings, 1 reply; 4+ messages in thread
From: Richard Sandiford @ 2024-05-30 10:48 UTC (permalink / raw)
  To: Pengxuan Zheng; +Cc: gcc-patches

Pengxuan Zheng <quic_pzheng@quicinc.com> writes:
> vget_low_2.c is a test case for little-endian, but we missed the -mlittle-endian
> flag in r15-697-ga2e4fe5a53cf75.
>
> gcc/testsuite/ChangeLog:
>
> 	* gcc.target/aarch64/vget_low_2.c: Add -mlittle-endian.

Ok, thanks.

If you'd like write access, please follow the instructions on
https://gcc.gnu.org/gitwrite.html (I'll sponsor).

Richard

> Signed-off-by: Pengxuan Zheng <quic_pzheng@quicinc.com>
> ---
>  gcc/testsuite/gcc.target/aarch64/vget_low_2.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/gcc/testsuite/gcc.target/aarch64/vget_low_2.c b/gcc/testsuite/gcc.target/aarch64/vget_low_2.c
> index 44414e1c043..93e9e664ee9 100644
> --- a/gcc/testsuite/gcc.target/aarch64/vget_low_2.c
> +++ b/gcc/testsuite/gcc.target/aarch64/vget_low_2.c
> @@ -1,5 +1,5 @@
>  /* { dg-do compile } */
> -/* { dg-options "-O3 -fdump-tree-optimized" } */
> +/* { dg-options "-O3 -fdump-tree-optimized -mlittle-endian" } */
>  
>  #include <arm_neon.h>

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

* RE: [PATCH] aarch64: testsuite: Explicitly add -mlittle-endian to vget_low_2.c
  2024-05-30 10:48 ` Richard Sandiford
@ 2024-05-30 22:59   ` Pengxuan Zheng (QUIC)
  2024-05-31 18:45     ` Pengxuan Zheng (QUIC)
  0 siblings, 1 reply; 4+ messages in thread
From: Pengxuan Zheng (QUIC) @ 2024-05-30 22:59 UTC (permalink / raw)
  To: Richard Sandiford, Pengxuan Zheng (QUIC); +Cc: gcc-patches

> Pengxuan Zheng <quic_pzheng@quicinc.com> writes:
> > vget_low_2.c is a test case for little-endian, but we missed the
> > -mlittle-endian flag in r15-697-ga2e4fe5a53cf75.
> >
> > gcc/testsuite/ChangeLog:
> >
> > 	* gcc.target/aarch64/vget_low_2.c: Add -mlittle-endian.
> 
> Ok, thanks.
> 
> If you'd like write access, please follow the instructions on
> https://gcc.gnu.org/gitwrite.html (I'll sponsor).
> 
> Richard

Thanks a lot, Richard! I really appreciate it!

I have submitted a request for write access naming you as sponsor.

Thanks,
Pengxuan
> 
> > Signed-off-by: Pengxuan Zheng <quic_pzheng@quicinc.com>
> > ---
> >  gcc/testsuite/gcc.target/aarch64/vget_low_2.c | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/gcc/testsuite/gcc.target/aarch64/vget_low_2.c
> > b/gcc/testsuite/gcc.target/aarch64/vget_low_2.c
> > index 44414e1c043..93e9e664ee9 100644
> > --- a/gcc/testsuite/gcc.target/aarch64/vget_low_2.c
> > +++ b/gcc/testsuite/gcc.target/aarch64/vget_low_2.c
> > @@ -1,5 +1,5 @@
> >  /* { dg-do compile } */
> > -/* { dg-options "-O3 -fdump-tree-optimized" } */
> > +/* { dg-options "-O3 -fdump-tree-optimized -mlittle-endian" } */
> >
> >  #include <arm_neon.h>

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

* RE: [PATCH] aarch64: testsuite: Explicitly add -mlittle-endian to vget_low_2.c
  2024-05-30 22:59   ` Pengxuan Zheng (QUIC)
@ 2024-05-31 18:45     ` Pengxuan Zheng (QUIC)
  0 siblings, 0 replies; 4+ messages in thread
From: Pengxuan Zheng (QUIC) @ 2024-05-31 18:45 UTC (permalink / raw)
  To: Pengxuan Zheng (QUIC), Richard Sandiford; +Cc: gcc-patches

> > Pengxuan Zheng <quic_pzheng@quicinc.com> writes:
> > > vget_low_2.c is a test case for little-endian, but we missed the
> > > -mlittle-endian flag in r15-697-ga2e4fe5a53cf75.
> > >
> > > gcc/testsuite/ChangeLog:
> > >
> > > 	* gcc.target/aarch64/vget_low_2.c: Add -mlittle-endian.
> >
> > Ok, thanks.
> >
> > If you'd like write access, please follow the instructions on
> > https://gcc.gnu.org/gitwrite.html (I'll sponsor).
> >
> > Richard
> 
> Thanks a lot, Richard! I really appreciate it!
> 
> I have submitted a request for write access naming you as sponsor.
> 
> Thanks,
> Pengxuan

Thanks, Richard! I've been granted write access now and committed
the patch as r15-950-g7fb62627cfb3e0.
> >
> > > Signed-off-by: Pengxuan Zheng <quic_pzheng@quicinc.com>
> > > ---
> > >  gcc/testsuite/gcc.target/aarch64/vget_low_2.c | 2 +-
> > >  1 file changed, 1 insertion(+), 1 deletion(-)
> > >
> > > diff --git a/gcc/testsuite/gcc.target/aarch64/vget_low_2.c
> > > b/gcc/testsuite/gcc.target/aarch64/vget_low_2.c
> > > index 44414e1c043..93e9e664ee9 100644
> > > --- a/gcc/testsuite/gcc.target/aarch64/vget_low_2.c
> > > +++ b/gcc/testsuite/gcc.target/aarch64/vget_low_2.c
> > > @@ -1,5 +1,5 @@
> > >  /* { dg-do compile } */
> > > -/* { dg-options "-O3 -fdump-tree-optimized" } */
> > > +/* { dg-options "-O3 -fdump-tree-optimized -mlittle-endian" } */
> > >
> > >  #include <arm_neon.h>

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

end of thread, other threads:[~2024-05-31 18:45 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-05-23  1:00 [PATCH] aarch64: testsuite: Explicitly add -mlittle-endian to vget_low_2.c Pengxuan Zheng
2024-05-30 10:48 ` Richard Sandiford
2024-05-30 22:59   ` Pengxuan Zheng (QUIC)
2024-05-31 18:45     ` Pengxuan Zheng (QUIC)

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).