Change kind of integer literal to fix a testcase.
authorHafiz Abid Qadeer <abidh@codesourcery.com>
Mon, 17 Jan 2022 13:45:08 +0000 (13:45 +0000)
committerHafiz Abid Qadeer <abidh@codesourcery.com>
Mon, 17 Jan 2022 13:57:18 +0000 (13:57 +0000)
As Thomas reported in
https://gcc.gnu.org/pipermail/gcc-patches/2022-January/588448.html
a test added in my recent allocate clause patch fails on m32. It was due
to default kind for integer matching c_intptr_t for m32. I have now
changed it to 0_1 so that always integer with kind=1 is used.

gcc/testsuite/ChangeLog:

* gfortran.dg/gomp/allocate-2.f90: Change 0 to 0_1.

gcc/testsuite/gfortran.dg/gomp/allocate-2.f90

index 88b2d26..657ff44 100644 (file)
@@ -33,7 +33,7 @@ subroutine foo(x)
   x=5
   !$omp end parallel
 
-  !$omp parallel allocate (0: x) private(x) ! { dg-error "Expected integer expression of the 'omp_allocator_handle_kind' kind at .1." }
+  !$omp parallel allocate (0_1: x) private(x) ! { dg-error "Expected integer expression of the 'omp_allocator_handle_kind' kind at .1." }
   x=6
   !$omp end parallel