coarray_atomic_4.f90: Avoid using a kind=16 integer.

2014-07-13  Tobias Burnus  <burnus@net-b.de>

        * gfortran.dg/coarray_atomic_4.f90: Avoid using a kind=16
        integer.

From-SVN: r212491
This commit is contained in:
Tobias Burnus 2014-07-13 10:10:40 +02:00 committed by Tobias Burnus
parent 60ab4b449c
commit 4a05a9a8d2
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2014-07-13 Tobias Burnus <burnus@net-b.de>
* gfortran.dg/coarray_atomic_4.f90: Avoid using a kind=16
integer.
2014-07-12 Paul Thomas <pault@gcc.gnu.org>
PR fortran/61780

View File

@ -37,7 +37,7 @@ call atomic_or(caf, 101, stat=stat)
call atomic_xor(caf, 105_2, stat=stat)
call atomic_fetch_add(caf, var3, var, stat=stat)
call atomic_fetch_and(caf, 22_16, var, stat=stat)
call atomic_fetch_and(caf, 22_1, var, stat=stat)
call atomic_fetch_or(caf, var3, var, stat=stat)
call atomic_fetch_xor(caf, 47_2, var, stat=stat)