]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
libgomp.fortran/allocate-6.f90: Run with -fdump-tree-gimple
authorTobias Burnus <tobias@codesourcery.com>
Sat, 14 Oct 2023 18:09:34 +0000 (20:09 +0200)
committerTobias Burnus <tobias@codesourcery.com>
Sat, 14 Oct 2023 18:09:34 +0000 (20:09 +0200)
libgomp/
* testsuite/libgomp.fortran/allocate-6.f90: Add missing
dg-additional-options "-fdump-tree-gimple"; fix scan.

libgomp/testsuite/libgomp.fortran/allocate-6.f90

index 5c32652f2a6739dde167cf0fba91cd2a00e186a4..5034dd26b2e3d236865608e4bfba114522a2454a 100644 (file)
@@ -1,3 +1,4 @@
+! { dg-additional-options "-fdump-tree-gimple" }
 module m
   use iso_c_binding
   use omp_lib
@@ -23,10 +24,10 @@ subroutine one ()
       !$omp allocate(var,var2) align(128) allocator(omp_low_lat_mem_alloc)
       var = 5
 ! { dg-final { scan-tree-dump-times "var\\.\[0-9\]+ = __builtin_GOMP_alloc \\(128, 4, 5\\);" 1 "gimple" } } */
-! { dg-final { scan-tree-dump-times "var2\\.\[0-9\]+ = __builtin_GOMP_alloc \\(128, D\\.\[0-9\]+, 5\\);" 1 "gimple" } } */
+! { dg-final { scan-tree-dump-times "var2 = __builtin_GOMP_alloc \\(128, D\\.\[0-9\]+, 5\\);" 1 "gimple" } } */
 
 ! { dg-final { scan-tree-dump-times "__builtin_GOMP_free \\(var\\.\[0-9\]+, 0B\\);" 1 "gimple" } } */
-! { dg-final { scan-tree-dump-times "__builtin_GOMP_free \\(var2\\.\[0-9\]+, 0B\\);" 1 "gimple" } } */
+! { dg-final { scan-tree-dump-times "__builtin_GOMP_free \\(var2, 0B\\);" 1 "gimple" } } */
 
       if (mod(transfer(loc(var), intptr), 128_c_intptr_t) /= 0) &
         stop 1