summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/gomp
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gcc.dg/gomp')
-rw-r--r--gcc/testsuite/gcc.dg/gomp/barrier-1.c1
-rw-r--r--gcc/testsuite/gcc.dg/gomp/combined-1.c1
-rw-r--r--gcc/testsuite/gcc.dg/gomp/critical-1.c1
-rw-r--r--gcc/testsuite/gcc.dg/gomp/critical-3.c1
-rw-r--r--gcc/testsuite/gcc.dg/gomp/empty.c1
-rw-r--r--gcc/testsuite/gcc.dg/gomp/flush-1.c1
-rw-r--r--gcc/testsuite/gcc.dg/gomp/for-10.c1
-rw-r--r--gcc/testsuite/gcc.dg/gomp/for-13.c1
-rw-r--r--gcc/testsuite/gcc.dg/gomp/for-18.c1
-rw-r--r--gcc/testsuite/gcc.dg/gomp/for-19.c1
-rw-r--r--gcc/testsuite/gcc.dg/gomp/for-4.c1
-rw-r--r--gcc/testsuite/gcc.dg/gomp/for-5.c1
-rw-r--r--gcc/testsuite/gcc.dg/gomp/for-6.c1
-rw-r--r--gcc/testsuite/gcc.dg/gomp/for-7.c1
-rw-r--r--gcc/testsuite/gcc.dg/gomp/for-8.c1
-rw-r--r--gcc/testsuite/gcc.dg/gomp/for-9.c1
-rw-r--r--gcc/testsuite/gcc.dg/gomp/macro-3.c1
-rw-r--r--gcc/testsuite/gcc.dg/gomp/master-3.c1
-rw-r--r--gcc/testsuite/gcc.dg/gomp/openmp-simd-1.c1
-rw-r--r--gcc/testsuite/gcc.dg/gomp/openmp-simd-2.c1
-rw-r--r--gcc/testsuite/gcc.dg/gomp/openmp-simd-3.c1
-rw-r--r--gcc/testsuite/gcc.dg/gomp/ordered-1.c1
-rw-r--r--gcc/testsuite/gcc.dg/gomp/pr27388-1.c1
-rw-r--r--gcc/testsuite/gcc.dg/gomp/pr27388-2.c1
-rw-r--r--gcc/testsuite/gcc.dg/gomp/pr27388-3.c1
-rw-r--r--gcc/testsuite/gcc.dg/gomp/pr32468-1.c1
-rw-r--r--gcc/testsuite/gcc.dg/gomp/pr34692.c1
-rw-r--r--gcc/testsuite/gcc.dg/gomp/simd-clones-1.c1
-rw-r--r--gcc/testsuite/gcc.dg/gomp/simd-clones-2.c1
-rw-r--r--gcc/testsuite/gcc.dg/gomp/simd-clones-3.c1
30 files changed, 0 insertions, 30 deletions
diff --git a/gcc/testsuite/gcc.dg/gomp/barrier-1.c b/gcc/testsuite/gcc.dg/gomp/barrier-1.c
index ef7c9afb18b..42c70e91163 100644
--- a/gcc/testsuite/gcc.dg/gomp/barrier-1.c
+++ b/gcc/testsuite/gcc.dg/gomp/barrier-1.c
@@ -15,4 +15,3 @@ void f2(_Bool p)
}
/* { dg-final { scan-tree-dump-times "GOMP_barrier" 2 "gimple" } } */
-/* { dg-final { cleanup-tree-dump "gimple" } } */
diff --git a/gcc/testsuite/gcc.dg/gomp/combined-1.c b/gcc/testsuite/gcc.dg/gomp/combined-1.c
index 7e23c3256cb..0c0848c5e7c 100644
--- a/gcc/testsuite/gcc.dg/gomp/combined-1.c
+++ b/gcc/testsuite/gcc.dg/gomp/combined-1.c
@@ -21,4 +21,3 @@ int foo (void)
}
/* { dg-final { scan-tree-dump-times "GOMP_parallel_loop_runtime" 3 "optimized" } } */
-/* { dg-final { cleanup-tree-dump "optimized" } } */
diff --git a/gcc/testsuite/gcc.dg/gomp/critical-1.c b/gcc/testsuite/gcc.dg/gomp/critical-1.c
index 6f3348c8884..8eca119bd6e 100644
--- a/gcc/testsuite/gcc.dg/gomp/critical-1.c
+++ b/gcc/testsuite/gcc.dg/gomp/critical-1.c
@@ -25,4 +25,3 @@ void foo (void)
/* { dg-final { scan-tree-dump-times "GOMP_critical_end" 2 "ompexp" } } */
/* { dg-final { scan-tree-dump-times "GOMP_critical_name_start" 2 "ompexp" } } */
/* { dg-final { scan-tree-dump-times "GOMP_critical_name_end" 2 "ompexp" } } */
-/* { dg-final { cleanup-tree-dump "ompexp" } } */
diff --git a/gcc/testsuite/gcc.dg/gomp/critical-3.c b/gcc/testsuite/gcc.dg/gomp/critical-3.c
index c0046f57139..6726e6a03d4 100644
--- a/gcc/testsuite/gcc.dg/gomp/critical-3.c
+++ b/gcc/testsuite/gcc.dg/gomp/critical-3.c
@@ -9,4 +9,3 @@ void foo(void)
}
// { dg-final { scan-tree-dump-times "\\&\\.gomp_critical_user_xyzzy" 2 "ompexp" } }
-// { dg-final { cleanup-tree-dump "ompexp" } }
diff --git a/gcc/testsuite/gcc.dg/gomp/empty.c b/gcc/testsuite/gcc.dg/gomp/empty.c
index c7aba8ffbae..b26664a9fa0 100644
--- a/gcc/testsuite/gcc.dg/gomp/empty.c
+++ b/gcc/testsuite/gcc.dg/gomp/empty.c
@@ -10,4 +10,3 @@ main()
/* There should not be a GOMP_parallel_start call. */
/* { dg-final { scan-tree-dump-times "GOMP_parallel_start" 0 "ompexp"} } */
-/* { dg-final { cleanup-tree-dump "ompexp" } } */
diff --git a/gcc/testsuite/gcc.dg/gomp/flush-1.c b/gcc/testsuite/gcc.dg/gomp/flush-1.c
index d1a4d4a5bfb..74a24a86105 100644
--- a/gcc/testsuite/gcc.dg/gomp/flush-1.c
+++ b/gcc/testsuite/gcc.dg/gomp/flush-1.c
@@ -21,4 +21,3 @@ void f2(_Bool p)
}
/* { dg-final { scan-tree-dump-times "__sync_synchronize" 3 "gimple" } } */
-/* { dg-final { cleanup-tree-dump "gimple" } } */
diff --git a/gcc/testsuite/gcc.dg/gomp/for-10.c b/gcc/testsuite/gcc.dg/gomp/for-10.c
index f21404249c7..a93c34fd4f9 100644
--- a/gcc/testsuite/gcc.dg/gomp/for-10.c
+++ b/gcc/testsuite/gcc.dg/gomp/for-10.c
@@ -14,4 +14,3 @@ void foo (int n)
/* { dg-final { scan-tree-dump-times "GOMP_loop_ordered_runtime_start" 1 "ompexp" } } */
/* { dg-final { scan-tree-dump-times "GOMP_loop_ordered_runtime_next" 1 "ompexp" } } */
-/* { dg-final { cleanup-tree-dump "ompexp" } } */
diff --git a/gcc/testsuite/gcc.dg/gomp/for-13.c b/gcc/testsuite/gcc.dg/gomp/for-13.c
index 607de49c749..225a23ad23d 100644
--- a/gcc/testsuite/gcc.dg/gomp/for-13.c
+++ b/gcc/testsuite/gcc.dg/gomp/for-13.c
@@ -15,4 +15,3 @@ void foo(void)
}
// { dg-final { scan-tree-dump-times "omp_data_o" 0 "ompexp" } }
-// { dg-final { cleanup-tree-dump "ompexp" } }
diff --git a/gcc/testsuite/gcc.dg/gomp/for-18.c b/gcc/testsuite/gcc.dg/gomp/for-18.c
index 545f271c80b..3b7f3f76dc0 100644
--- a/gcc/testsuite/gcc.dg/gomp/for-18.c
+++ b/gcc/testsuite/gcc.dg/gomp/for-18.c
@@ -39,4 +39,3 @@ bar (int *a, int i)
/* { dg-final { scan-tree-dump-times "GOMP_parallel_loop_dynamic_start" 4 "ompexp" { xfail *-*-* } } } */
/* { dg-final { scan-tree-dump-times "GOMP_parallel_loop_guided_start" 4 "ompexp" { xfail *-*-* } } } */
-/* { dg-final { cleanup-tree-dump "ompexp" } } */
diff --git a/gcc/testsuite/gcc.dg/gomp/for-19.c b/gcc/testsuite/gcc.dg/gomp/for-19.c
index a202ba4799f..ea408e6c10b 100644
--- a/gcc/testsuite/gcc.dg/gomp/for-19.c
+++ b/gcc/testsuite/gcc.dg/gomp/for-19.c
@@ -18,4 +18,3 @@ void foo (int *a, int i, int j, int k, int l, int m)
/* { dg-final { scan-tree-dump-times "shared\\(k\\)" 0 "gimple" { xfail *-*-* } } } */
/* { dg-final { scan-tree-dump-times "shared\\(l\\)" 0 "gimple" { xfail *-*-* } } } */
/* { dg-final { scan-tree-dump-times "shared\\(m\\)" 0 "gimple" { xfail *-*-* } } } */
-/* { dg-final { cleanup-tree-dump "gimple" } } */
diff --git a/gcc/testsuite/gcc.dg/gomp/for-4.c b/gcc/testsuite/gcc.dg/gomp/for-4.c
index fb6994ea20b..989d4b2a8f3 100644
--- a/gcc/testsuite/gcc.dg/gomp/for-4.c
+++ b/gcc/testsuite/gcc.dg/gomp/for-4.c
@@ -14,4 +14,3 @@ void foo (int n)
/* { dg-final { scan-tree-dump-times "GOMP_loop_dynamic_start" 1 "ompexp" } } */
/* { dg-final { scan-tree-dump-times "GOMP_loop_dynamic_next" 1 "ompexp" } } */
-/* { dg-final { cleanup-tree-dump "ompexp" } } */
diff --git a/gcc/testsuite/gcc.dg/gomp/for-5.c b/gcc/testsuite/gcc.dg/gomp/for-5.c
index 5912a4e5561..fca2697c9a4 100644
--- a/gcc/testsuite/gcc.dg/gomp/for-5.c
+++ b/gcc/testsuite/gcc.dg/gomp/for-5.c
@@ -14,4 +14,3 @@ void foo (int n)
/* { dg-final { scan-tree-dump-times "GOMP_loop_guided_start" 1 "ompexp" } } */
/* { dg-final { scan-tree-dump-times "GOMP_loop_guided_next" 1 "ompexp" } } */
-/* { dg-final { cleanup-tree-dump "ompexp" } } */
diff --git a/gcc/testsuite/gcc.dg/gomp/for-6.c b/gcc/testsuite/gcc.dg/gomp/for-6.c
index 100ee2c8c21..9f9db4102fd 100644
--- a/gcc/testsuite/gcc.dg/gomp/for-6.c
+++ b/gcc/testsuite/gcc.dg/gomp/for-6.c
@@ -14,4 +14,3 @@ void foo (int n)
/* { dg-final { scan-tree-dump-times "GOMP_loop_runtime_start" 1 "ompexp" } } */
/* { dg-final { scan-tree-dump-times "GOMP_loop_runtime_next" 1 "ompexp" } } */
-/* { dg-final { cleanup-tree-dump "ompexp" } } */
diff --git a/gcc/testsuite/gcc.dg/gomp/for-7.c b/gcc/testsuite/gcc.dg/gomp/for-7.c
index 10763dc596c..e93f785dfd1 100644
--- a/gcc/testsuite/gcc.dg/gomp/for-7.c
+++ b/gcc/testsuite/gcc.dg/gomp/for-7.c
@@ -14,4 +14,3 @@ void foo (int n)
/* { dg-final { scan-tree-dump-times "GOMP_loop_ordered_static_start" 1 "ompexp" } } */
/* { dg-final { scan-tree-dump-times "GOMP_loop_ordered_static_next" 1 "ompexp" } } */
-/* { dg-final { cleanup-tree-dump "ompexp" } } */
diff --git a/gcc/testsuite/gcc.dg/gomp/for-8.c b/gcc/testsuite/gcc.dg/gomp/for-8.c
index 1bc66c49a0d..c3b53661c87 100644
--- a/gcc/testsuite/gcc.dg/gomp/for-8.c
+++ b/gcc/testsuite/gcc.dg/gomp/for-8.c
@@ -14,4 +14,3 @@ void foo (int n)
/* { dg-final { scan-tree-dump-times "GOMP_loop_ordered_dynamic_start" 1 "ompexp" } } */
/* { dg-final { scan-tree-dump-times "GOMP_loop_ordered_dynamic_next" 1 "ompexp" } } */
-/* { dg-final { cleanup-tree-dump "ompexp" } } */
diff --git a/gcc/testsuite/gcc.dg/gomp/for-9.c b/gcc/testsuite/gcc.dg/gomp/for-9.c
index af99e216e79..8e53d9877e0 100644
--- a/gcc/testsuite/gcc.dg/gomp/for-9.c
+++ b/gcc/testsuite/gcc.dg/gomp/for-9.c
@@ -14,4 +14,3 @@ void foo (int n)
/* { dg-final { scan-tree-dump-times "GOMP_loop_ordered_guided_start" 1 "ompexp" } } */
/* { dg-final { scan-tree-dump-times "GOMP_loop_ordered_guided_next" 1 "ompexp" } } */
-/* { dg-final { cleanup-tree-dump "ompexp" } } */
diff --git a/gcc/testsuite/gcc.dg/gomp/macro-3.c b/gcc/testsuite/gcc.dg/gomp/macro-3.c
index 233d2edcdc9..dc4fe091b31 100644
--- a/gcc/testsuite/gcc.dg/gomp/macro-3.c
+++ b/gcc/testsuite/gcc.dg/gomp/macro-3.c
@@ -23,4 +23,3 @@ foo (void)
}
/* { dg-final { scan-tree-dump-times "#pragma omp parallel" 4 "omplower" } } */
-/* { dg-final { cleanup-tree-dump "omplower" } } */
diff --git a/gcc/testsuite/gcc.dg/gomp/master-3.c b/gcc/testsuite/gcc.dg/gomp/master-3.c
index fee09ddd798..3cdadc83aa4 100644
--- a/gcc/testsuite/gcc.dg/gomp/master-3.c
+++ b/gcc/testsuite/gcc.dg/gomp/master-3.c
@@ -10,4 +10,3 @@ void foo (void)
}
/* { dg-final { scan-tree-dump-times "omp_get_thread_num" 1 "ompexp" } } */
-/* { dg-final { cleanup-tree-dump "ompexp" } } */
diff --git a/gcc/testsuite/gcc.dg/gomp/openmp-simd-1.c b/gcc/testsuite/gcc.dg/gomp/openmp-simd-1.c
index e8e057a6166..fedb186fedf 100644
--- a/gcc/testsuite/gcc.dg/gomp/openmp-simd-1.c
+++ b/gcc/testsuite/gcc.dg/gomp/openmp-simd-1.c
@@ -44,4 +44,3 @@ void foo(int n, float *a, float *b)
/* { dg-final { scan-tree-dump-not "omp teams" "original" } } */
/* { dg-final { scan-tree-dump-not "omp target" "original" } } */
/* { dg-final { scan-tree-dump-not "omp parallel" "original" } } */
-/* { dg-final { cleanup-tree-dump "original" } } */
diff --git a/gcc/testsuite/gcc.dg/gomp/openmp-simd-2.c b/gcc/testsuite/gcc.dg/gomp/openmp-simd-2.c
index 94afced248f..e66806845b7 100644
--- a/gcc/testsuite/gcc.dg/gomp/openmp-simd-2.c
+++ b/gcc/testsuite/gcc.dg/gomp/openmp-simd-2.c
@@ -40,4 +40,3 @@ void bar(int n, float *a, float *b)
/* { dg-final { scan-tree-dump-times "pragma omp simd safelen\\(64\\)" 1 "original" } } */
/* { dg-final { scan-tree-dump-not "omp parallel" "original" } } */
/* { dg-final { scan-tree-dump-not "omp for" "original" } } */
-/* { dg-final { cleanup-tree-dump "original" } } */
diff --git a/gcc/testsuite/gcc.dg/gomp/openmp-simd-3.c b/gcc/testsuite/gcc.dg/gomp/openmp-simd-3.c
index eba9de27d98..fdff83ce66f 100644
--- a/gcc/testsuite/gcc.dg/gomp/openmp-simd-3.c
+++ b/gcc/testsuite/gcc.dg/gomp/openmp-simd-3.c
@@ -12,4 +12,3 @@ int main() {
}
/* { dg-final { scan-tree-dump-not "omp" "original" } } */
-/* { dg-final { cleanup-tree-dump "original" } } */
diff --git a/gcc/testsuite/gcc.dg/gomp/ordered-1.c b/gcc/testsuite/gcc.dg/gomp/ordered-1.c
index de5e116ebd2..0b02aa8a526 100644
--- a/gcc/testsuite/gcc.dg/gomp/ordered-1.c
+++ b/gcc/testsuite/gcc.dg/gomp/ordered-1.c
@@ -17,4 +17,3 @@ void foo (void)
/* { dg-final { scan-tree-dump-times "GOMP_ordered_start" 2 "ompexp" } } */
/* { dg-final { scan-tree-dump-times "GOMP_ordered_end" 2 "ompexp" } } */
-/* { dg-final { cleanup-tree-dump "ompexp" } } */
diff --git a/gcc/testsuite/gcc.dg/gomp/pr27388-1.c b/gcc/testsuite/gcc.dg/gomp/pr27388-1.c
index f315b8bd380..0dda0f1b50d 100644
--- a/gcc/testsuite/gcc.dg/gomp/pr27388-1.c
+++ b/gcc/testsuite/gcc.dg/gomp/pr27388-1.c
@@ -20,4 +20,3 @@ foo (void)
/* { dg-final { scan-tree-dump-times "shared\\\(i\\\)" 0 "omplower" } } */
/* { dg-final { scan-tree-dump-times "private\\\(i\\\)" 1 "omplower" } } */
-/* { dg-final { cleanup-tree-dump "omplower" } } */
diff --git a/gcc/testsuite/gcc.dg/gomp/pr27388-2.c b/gcc/testsuite/gcc.dg/gomp/pr27388-2.c
index da8a48d7ef0..7eae2eae636 100644
--- a/gcc/testsuite/gcc.dg/gomp/pr27388-2.c
+++ b/gcc/testsuite/gcc.dg/gomp/pr27388-2.c
@@ -32,4 +32,3 @@ bar (void)
/* { dg-final { scan-tree-dump-times "shared\\\(j\\\)\[^\\n\]*private\\\(j\\\)" 0 "omplower" } } */
/* { dg-final { scan-tree-dump-times "private\\\(j\\\)\[^\\n\]*shared\\\(j\\\)" 0 "omplower" } } */
/* { dg-final { scan-tree-dump-times "omp for\[^\\n\]*private\\\(j\\\)" 1 "omplower" } } */
-/* { dg-final { cleanup-tree-dump "omplower" } } */
diff --git a/gcc/testsuite/gcc.dg/gomp/pr27388-3.c b/gcc/testsuite/gcc.dg/gomp/pr27388-3.c
index 2cddb23c7d8..ba7065bbf2c 100644
--- a/gcc/testsuite/gcc.dg/gomp/pr27388-3.c
+++ b/gcc/testsuite/gcc.dg/gomp/pr27388-3.c
@@ -20,4 +20,3 @@ foo (void)
}
/* { dg-final { scan-tree-dump-times "omp for\[^\\n\]*private" 2 "omplower" } } */
-/* { dg-final { cleanup-tree-dump "omplower" } } */
diff --git a/gcc/testsuite/gcc.dg/gomp/pr32468-1.c b/gcc/testsuite/gcc.dg/gomp/pr32468-1.c
index 43724135720..1eb264e53de 100644
--- a/gcc/testsuite/gcc.dg/gomp/pr32468-1.c
+++ b/gcc/testsuite/gcc.dg/gomp/pr32468-1.c
@@ -97,4 +97,3 @@ f6 (void)
/* There should not be a GOMP_parallel_{loop,sections}* call. */
/* { dg-final { scan-tree-dump-times "GOMP_parallel_loop" 0 "ompexp"} } */
/* { dg-final { scan-tree-dump-times "GOMP_parallel_sections" 0 "ompexp"} } */
-/* { dg-final { cleanup-tree-dump "ompexp" } } */
diff --git a/gcc/testsuite/gcc.dg/gomp/pr34692.c b/gcc/testsuite/gcc.dg/gomp/pr34692.c
index cc93914b6c1..a8a977d4ed6 100644
--- a/gcc/testsuite/gcc.dg/gomp/pr34692.c
+++ b/gcc/testsuite/gcc.dg/gomp/pr34692.c
@@ -25,4 +25,3 @@ cde f g h);
}
}
-/* { dg-final { cleanup-tree-dump "gimple" } } */
diff --git a/gcc/testsuite/gcc.dg/gomp/simd-clones-1.c b/gcc/testsuite/gcc.dg/gomp/simd-clones-1.c
index 486b67a637a..4875bdd5701 100644
--- a/gcc/testsuite/gcc.dg/gomp/simd-clones-1.c
+++ b/gcc/testsuite/gcc.dg/gomp/simd-clones-1.c
@@ -30,4 +30,3 @@ void fillit(int *tot)
}
/* { dg-final { scan-tree-dump-not "special_add.constprop" "optimized" } } */
-/* { dg-final { cleanup-tree-dump "optimized" } } */
diff --git a/gcc/testsuite/gcc.dg/gomp/simd-clones-2.c b/gcc/testsuite/gcc.dg/gomp/simd-clones-2.c
index 030ae6cb19b..4fb9c40d1a6 100644
--- a/gcc/testsuite/gcc.dg/gomp/simd-clones-2.c
+++ b/gcc/testsuite/gcc.dg/gomp/simd-clones-2.c
@@ -23,4 +23,3 @@ float setArray(float *a, float x, int k)
/* { dg-final { scan-tree-dump "_ZGVdN8ua32vl_setArray" "optimized" { target i?86-*-* x86_64-*-* } } } */
/* { dg-final { scan-tree-dump "_ZGVdN8vvva32_addit" "optimized" { target i?86-*-* x86_64-*-* } } } */
/* { dg-final { scan-tree-dump "_ZGVdM8vl66u_addit" "optimized" { target i?86-*-* x86_64-*-* } } } */
-/* { dg-final { cleanup-tree-dump "optimized" } } */
diff --git a/gcc/testsuite/gcc.dg/gomp/simd-clones-3.c b/gcc/testsuite/gcc.dg/gomp/simd-clones-3.c
index 98e767c3ae3..622b80145bd 100644
--- a/gcc/testsuite/gcc.dg/gomp/simd-clones-3.c
+++ b/gcc/testsuite/gcc.dg/gomp/simd-clones-3.c
@@ -15,4 +15,3 @@ int addit(int a, int b, int c)
/* { dg-final { scan-tree-dump "_ZGVcM4vvv_addit" "optimized" { target i?86-*-* x86_64-*-* } } } */
/* { dg-final { scan-tree-dump "_ZGVdN8vvv_addit" "optimized" { target i?86-*-* x86_64-*-* } } } */
/* { dg-final { scan-tree-dump "_ZGVdM8vvv_addit" "optimized" { target i?86-*-* x86_64-*-* } } } */
-/* { dg-final { cleanup-tree-dump "optimized" } } */