Blame test/mpi/f77/pt2pt/dummyf.f
|
Packit |
0848f5 |
C -*- Mode: Fortran; -*-
|
|
Packit |
0848f5 |
C
|
|
Packit |
0848f5 |
C (C) 2011 by Argonne National Laboratory.
|
|
Packit |
0848f5 |
C See COPYRIGHT in top-level directory.
|
|
Packit |
0848f5 |
C
|
|
Packit |
0848f5 |
C
|
|
Packit |
0848f5 |
C This file is used to disable certain compiler optimizations that
|
|
Packit |
0848f5 |
C can cause incorrect results with the test in greqf.f. It provides a
|
|
Packit |
0848f5 |
C point where extrastate may be modified, limiting the compilers ability
|
|
Packit |
0848f5 |
C to move code around.
|
|
Packit |
0848f5 |
C The include of mpif.h is not needed in the F77 case but in the
|
|
Packit |
0848f5 |
C F90 case it is, because in that case, extrastate is defined as an
|
|
Packit |
0848f5 |
C integer (kind=MPI_ADDRESS_KIND), and the script that creates the
|
|
Packit |
0848f5 |
C F90 tests from the F77 tests looks for mpif.h
|
|
Packit |
0848f5 |
subroutine dummyupdate( extrastate )
|
|
Packit |
0848f5 |
include 'mpif.h'
|
|
Packit |
0848f5 |
include 'attr1aints.h'
|
|
Packit |
0848f5 |
end
|