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