5af42d
From 8f0c71281b5dccd70a3f1d4204e3cc6bc7201ceb Mon Sep 17 00:00:00 2001
5af42d
From: =?UTF-8?q?Zbigniew=20J=C4=99drzejewski-Szmek?=
5af42d
 <zbyszek@arm03-packager01.cloud.fedoraproject.org>
5af42d
Date: Wed, 28 Aug 2019 10:57:55 +0000
5af42d
Subject: [PATCH] Drop real128
5af42d
5af42d
https://github.com/pmodels/mpich/issues/4005
5af42d
---
5af42d
 .../fortran/use_mpi_f08/mpi_f08_types.f90     | 24 -------------------
5af42d
 1 file changed, 24 deletions(-)
5af42d
5af42d
diff --git a/src/binding/fortran/use_mpi_f08/mpi_f08_types.f90 b/src/binding/fortran/use_mpi_f08/mpi_f08_types.f90
5af42d
index f8b0fa811..46bdf6972 100644
5af42d
--- a/src/binding/fortran/use_mpi_f08/mpi_f08_types.f90
5af42d
+++ b/src/binding/fortran/use_mpi_f08/mpi_f08_types.f90
5af42d
@@ -248,10 +248,8 @@ interface MPI_Sizeof
5af42d
     module procedure MPI_Sizeof_xint64
5af42d
     module procedure MPI_Sizeof_xreal32
5af42d
     module procedure MPI_Sizeof_xreal64
5af42d
-    module procedure MPI_Sizeof_xreal128
5af42d
     module procedure MPI_Sizeof_xcomplex32
5af42d
     module procedure MPI_Sizeof_xcomplex64
5af42d
-    module procedure MPI_Sizeof_xcomplex128
5af42d
 end interface
5af42d
 
5af42d
 private :: MPI_Sizeof_character
5af42d
@@ -263,10 +261,8 @@ private :: MPI_Sizeof_xint32
5af42d
 private :: MPI_Sizeof_xint64
5af42d
 private :: MPI_Sizeof_xreal32
5af42d
 private :: MPI_Sizeof_xreal64
5af42d
-private :: MPI_Sizeof_xreal128
5af42d
 private :: MPI_Sizeof_xcomplex32
5af42d
 private :: MPI_Sizeof_xcomplex64
5af42d
-private :: MPI_Sizeof_xcomplex128
5af42d
 
5af42d
 contains
5af42d
 
5af42d
@@ -350,16 +346,6 @@ subroutine MPI_Sizeof_xreal64 (x, size, ierror)
5af42d
     ierror = 0
5af42d
 end subroutine MPI_Sizeof_xreal64
5af42d
 
5af42d
-subroutine MPI_Sizeof_xreal128 (x, size, ierror)
5af42d
-    use,intrinsic :: iso_fortran_env, only: real128
5af42d
-    real(real128),dimension(..) :: x
5af42d
-    integer, intent(out) :: size
5af42d
-    integer, optional,  intent(out) :: ierror
5af42d
-
5af42d
-    size = storage_size(x)/8
5af42d
-    ierror = 0
5af42d
-end subroutine MPI_Sizeof_xreal128
5af42d
-
5af42d
 subroutine MPI_Sizeof_xcomplex32 (x, size, ierror)
5af42d
     use,intrinsic :: iso_fortran_env, only: real32
5af42d
     complex(real32),dimension(..) :: x
5af42d
@@ -380,16 +366,6 @@ subroutine MPI_Sizeof_xcomplex64 (x, size, ierror)
5af42d
     ierror = 0
5af42d
 end subroutine MPI_Sizeof_xcomplex64
5af42d
 
5af42d
-subroutine MPI_Sizeof_xcomplex128 (x, size, ierror)
5af42d
-    use,intrinsic :: iso_fortran_env, only: real128
5af42d
-    complex(real128),dimension(..) :: x
5af42d
-    integer, intent(out) :: size
5af42d
-    integer, optional,  intent(out) :: ierror
5af42d
-
5af42d
-    size = storage_size(x)/8
5af42d
-    ierror = 0
5af42d
-end subroutine MPI_Sizeof_xcomplex128
5af42d
-
5af42d
 subroutine MPI_Status_f2f08(f_status, f08_status, ierror)
5af42d
     integer, intent(in) :: f_status(MPI_STATUS_SIZE)
5af42d
     type(MPI_Status), intent(out) :: f08_status
5af42d
-- 
5af42d
2.21.0
5af42d