]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
testsuite: Skip target not support -pthread [PR104676].
authorJia-Wei Chen <jiawei@iscas.ac.cn>
Tue, 19 Apr 2022 03:11:24 +0000 (11:11 +0800)
committerKito Cheng <kito.cheng@sifive.com>
Thu, 28 Apr 2022 03:22:39 +0000 (11:22 +0800)
The "ftree-parallelize-loops=" imply -pthread option in gcc/gcc.cc,
some target are not support pthread like elf target use newlib,
and will get an error:

"*-*-elf-gcc: error: unrecognized command-line option '-pthread'"

so we add an additional condition "{target pthread}" to make sure the
dg-additional-options runs on support targets.

gcc/testsuite/ChangeLog

PR target/104676
* gcc.dg/torture/pr104676.c: Add "{target pthread}" check.

gcc/testsuite/gcc.dg/torture/pr104676.c

index 50845bb9e150aced0b3180a86c828c96f45218bb..0991b78f75813cb322747ad842d0bdf28ba092b0 100644 (file)
@@ -1,5 +1,5 @@
 /* { dg-do compile } */
-/* { dg-additional-options "-ftree-loop-distribution -ftree-parallelize-loops=2" } */
+/* { dg-additional-options "-ftree-loop-distribution -ftree-parallelize-loops=2" { target pthread } } */
 
 struct S {
   int f;