diff mbox series

RISC-V: Add required tls to read thread pointer test

Message ID 20230427033142.949564-1-pan2.li@intel.com
State New
Headers show
Series RISC-V: Add required tls to read thread pointer test | expand

Commit Message

Li, Pan2 April 27, 2023, 3:31 a.m. UTC
From: Pan Li <pan2.li@intel.com>

The read-thread-pointer test may require the gcc configured
with --enable-tls. If no, there x4 (aka tp) register will not
be presented in the assembly code.

This patch requires the tls for the dg checking. It will perform
the test checking if --enable-tls and mark the test as unsupported
if --disable-tls.

Configured with --enable-tls:
=== gcc Summary ===
of expected passes            16

Configured with --disable-tls:
=== gcc Summary ===
of unsupported tests          8

gcc/testsuite/ChangeLog:

	* gcc.target/riscv/read-thread-pointer.c: Add required tls.

Signed-off-by: Pan Li <pan2.li@intel.com>
---
 gcc/testsuite/gcc.target/riscv/read-thread-pointer.c | 1 +
 1 file changed, 1 insertion(+)

Comments

Kito Cheng April 27, 2023, 3:30 p.m. UTC | #1
Thanks, pushed :)

On Thu, Apr 27, 2023 at 11:32 AM Pan Li via Gcc-patches
<gcc-patches@gcc.gnu.org> wrote:
>
> From: Pan Li <pan2.li@intel.com>
>
> The read-thread-pointer test may require the gcc configured
> with --enable-tls. If no, there x4 (aka tp) register will not
> be presented in the assembly code.
>
> This patch requires the tls for the dg checking. It will perform
> the test checking if --enable-tls and mark the test as unsupported
> if --disable-tls.
>
> Configured with --enable-tls:
> === gcc Summary ===
> of expected passes            16
>
> Configured with --disable-tls:
> === gcc Summary ===
> of unsupported tests          8
>
> gcc/testsuite/ChangeLog:
>
>         * gcc.target/riscv/read-thread-pointer.c: Add required tls.
>
> Signed-off-by: Pan Li <pan2.li@intel.com>
> ---
>  gcc/testsuite/gcc.target/riscv/read-thread-pointer.c | 1 +
>  1 file changed, 1 insertion(+)
>
> diff --git a/gcc/testsuite/gcc.target/riscv/read-thread-pointer.c b/gcc/testsuite/gcc.target/riscv/read-thread-pointer.c
> index 401fb421129..5f460b5f746 100644
> --- a/gcc/testsuite/gcc.target/riscv/read-thread-pointer.c
> +++ b/gcc/testsuite/gcc.target/riscv/read-thread-pointer.c
> @@ -1,4 +1,5 @@
>  /* { dg-do compile } */
> +/* { dg-require-effective-target tls_native } */
>
>  void *get_tp()
>  {
> --
> 2.34.1
>
diff mbox series

Patch

diff --git a/gcc/testsuite/gcc.target/riscv/read-thread-pointer.c b/gcc/testsuite/gcc.target/riscv/read-thread-pointer.c
index 401fb421129..5f460b5f746 100644
--- a/gcc/testsuite/gcc.target/riscv/read-thread-pointer.c
+++ b/gcc/testsuite/gcc.target/riscv/read-thread-pointer.c
@@ -1,4 +1,5 @@ 
 /* { dg-do compile } */
+/* { dg-require-effective-target tls_native } */
 
 void *get_tp()
 {