diff options
author | Sam James <sam@gentoo.org> | 2024-07-30 11:08:31 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2024-07-30 11:54:35 +0100 |
commit | 136f364e26d9ad4f05e0005e480813cdc8f56c96 (patch) | |
tree | 8256b8dd19861d8be9aa0102ce2303556a7c9fbb | |
parent | 0450a143d2d132a8b3e6cff896f69e191c3316e2 (diff) | |
download | gcc-136f364e26d9ad4f05e0005e480813cdc8f56c96.zip gcc-136f364e26d9ad4f05e0005e480813cdc8f56c96.tar.gz gcc-136f364e26d9ad4f05e0005e480813cdc8f56c96.tar.bz2 |
testsuite: fix dg-do run whitespace
This caused the tests to not be run. I may do further passes for non-run
next.
Tested on x86_64-pc-linux-gnu and checked test logs before/after.
PR c/53548
PR target/101529
PR tree-optimization/102359
* c-c++-common/fam-in-union-alone-in-struct-1.c: Fix whitespace in dg directive.
* c-c++-common/fam-in-union-alone-in-struct-2.c: Likewise.
* c-c++-common/torture/builtin-shufflevector-2.c: Likewise.
* g++.dg/pr102359_2.C: Likewise.
* g++.target/i386/mvc1.C: Likewise.
5 files changed, 5 insertions, 5 deletions
diff --git a/gcc/testsuite/c-c++-common/fam-in-union-alone-in-struct-1.c b/gcc/testsuite/c-c++-common/fam-in-union-alone-in-struct-1.c index 7d4721a..39ebf17 100644 --- a/gcc/testsuite/c-c++-common/fam-in-union-alone-in-struct-1.c +++ b/gcc/testsuite/c-c++-common/fam-in-union-alone-in-struct-1.c @@ -1,6 +1,6 @@ /* testing the correct usage of flexible array members in unions and alone in structures. */ -/* { dg-do run} */ +/* { dg-do run } */ /* { dg-options "-Wpedantic" } */ union with_fam_1 { diff --git a/gcc/testsuite/c-c++-common/fam-in-union-alone-in-struct-2.c b/gcc/testsuite/c-c++-common/fam-in-union-alone-in-struct-2.c index 3743f9e..93f9d51 100644 --- a/gcc/testsuite/c-c++-common/fam-in-union-alone-in-struct-2.c +++ b/gcc/testsuite/c-c++-common/fam-in-union-alone-in-struct-2.c @@ -1,6 +1,6 @@ /* testing the correct usage of flexible array members in unions and alone in structures: initialization */ -/* { dg-do run} */ +/* { dg-do run } */ /* { dg-options "-O2" } */ union with_fam_1 { diff --git a/gcc/testsuite/c-c++-common/torture/builtin-shufflevector-2.c b/gcc/testsuite/c-c++-common/torture/builtin-shufflevector-2.c index b1ffc95..a84e0a6 100644 --- a/gcc/testsuite/c-c++-common/torture/builtin-shufflevector-2.c +++ b/gcc/testsuite/c-c++-common/torture/builtin-shufflevector-2.c @@ -1,4 +1,4 @@ -/* { dg-do run} */ +/* { dg-do run } */ /* PR target/101529 */ typedef unsigned char C; typedef unsigned char __attribute__((__vector_size__ (8))) V; diff --git a/gcc/testsuite/g++.dg/pr102359_2.C b/gcc/testsuite/g++.dg/pr102359_2.C index d026d72..1b3f614 100644 --- a/gcc/testsuite/g++.dg/pr102359_2.C +++ b/gcc/testsuite/g++.dg/pr102359_2.C @@ -1,6 +1,6 @@ /* PR middle-end/102359 ICE gimplification failed since r12-3433-ga25e0b5e6ac8a77a. */ -/* { dg-do run} */ +/* { dg-do run } */ /* { dg-options "-ftrivial-auto-var-init=zero" } */ /* { dg-require-effective-target c++17 } */ diff --git a/gcc/testsuite/g++.target/i386/mvc1.C b/gcc/testsuite/g++.target/i386/mvc1.C index b307d01..348bd0e 100644 --- a/gcc/testsuite/g++.target/i386/mvc1.C +++ b/gcc/testsuite/g++.target/i386/mvc1.C @@ -1,4 +1,4 @@ -/* { dg-do run} */ +/* { dg-do run } */ /* { dg-require-ifunc "" } */ __attribute__((target_clones("avx","arch=slm","arch=core-avx2","default"))) |