Skip to content

Commit

Permalink
Remove white space
Browse files Browse the repository at this point in the history
  • Loading branch information
eschnett committed May 7, 2022
1 parent bb3f62f commit 77adbf7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions include/mpi.f90
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ module mpi
interface
subroutine mpi_send(buf, count, datatype, dest, tag, comm, ierror)
implicit none
!dir$ ignore_tkr (tkr) buf
!dir$ ignore_tkr(tkr) buf
!gcc$ attributes no_arg_check :: buf
integer, intent(in) :: buf(*)
integer, intent(in) :: count
Expand All @@ -117,7 +117,7 @@ end subroutine mpi_send
subroutine mpi_recv(buf, count, datatype, source, tag, comm, status, ierror)
import mpi_status_size
implicit none
!dir$ ignore_tkr (tkr) buf
!dir$ ignore_tkr(tkr) buf
!gcc$ attributes no_arg_check :: buf
integer :: buf(*)
integer, intent(in) :: count
Expand Down
4 changes: 2 additions & 2 deletions include/mpi_f08.f90
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ end function mpi_win_ne

subroutine mpi_send_impl(buf, count, datatype, dest, tag, comm, ierror)
use mpi, only: mpi_send
!dir$ ignore_tkr (tkr) buf
!dir$ ignore_tkr(tkr) buf
!gcc$ attributes no_arg_check :: buf
integer, intent(in) :: buf
integer, intent(in) :: count
Expand All @@ -392,7 +392,7 @@ end subroutine mpi_send_impl

subroutine mpi_recv_impl(buf, count, datatype, source, tag, comm, status, ierror)
use mpi, only: mpi_source, mpi_tag, mpi_error, mpi_recv
!dir$ ignore_tkr (tkr) buf
!dir$ ignore_tkr(tkr) buf
!gcc$ attributes no_arg_check :: buf
integer :: buf
integer, intent(in) :: count
Expand Down

0 comments on commit 77adbf7

Please sign in to comment.