Blame SOURCES/gcc10-libgfortran-compat.patch

0714f1
--- libgfortran/Makefile.am.jj	2020-04-30 17:41:43.451589601 +0200
0714f1
+++ libgfortran/Makefile.am	2020-05-28 13:55:44.816954223 +0200
0714f1
@@ -37,6 +37,7 @@ LTLDFLAGS = $(shell $(SHELL) $(top_srcdi
0714f1
 	    $(lt_host_flags)
0714f1
 
0714f1
 toolexeclib_LTLIBRARIES = libgfortran.la
0714f1
+noinst_LTLIBRARIES = libgfortran_nonshared80.la
0714f1
 toolexeclib_DATA = libgfortran.spec
0714f1
 libgfortran_la_LINK = $(LINK) $(libgfortran_la_LDFLAGS)
0714f1
 libgfortran_la_LDFLAGS = -version-info `grep -v '^\#' $(srcdir)/libtool-version` \
0714f1
@@ -1039,6 +1040,89 @@ libgfortran_la_SOURCES = $(prereq_SRC)
0714f1
 
0714f1
 endif
0714f1
 
0714f1
+$(patsubst %.c,%.lo,$(nonshared_generated_C_SRC) $(nonshared)): \
0714f1
+nonshared-%.lo: $(srcdir)/generated/%.c
0714f1
+	$(LTCOMPILE) -c -o $@ $< -DLIBGFORTRAN_NONSHARED
0714f1
+
0714f1
+$(patsubst %.c,%.o,$(nonshared_generated_C_SRC) $(nonshared)): \
0714f1
+nonshared-%.o: $(srcdir)/generated/%.c
0714f1
+	$(COMPILE) -c -o $@ $< -DLIBGFORTRAN_NONSHARED
0714f1
+
0714f1
+$(patsubst %.c,%.lo,$(nonshared_intrinsics_C_SRC) $(nonshared)): \
0714f1
+nonshared-%.lo: $(srcdir)/intrinsics/%.c
0714f1
+	$(LTCOMPILE) -c -o $@ $< -DLIBGFORTRAN_NONSHARED
0714f1
+
0714f1
+$(patsubst %.c,%.o,$(nonshared_intrinsics_C_SRC) $(nonshared)): \
0714f1
+nonshared-%.o: $(srcdir)/intrinsics/%.c
0714f1
+	$(COMPILE) -c -o $@ $< -DLIBGFORTRAN_NONSHARED
0714f1
+
0714f1
+$(patsubst %.c,%.lo,$(nonshared_runtime_C_SRC) $(nonshared)): \
0714f1
+nonshared-%.lo: $(srcdir)/runtime/%.c
0714f1
+	$(LTCOMPILE) -c -o $@ $< -DLIBGFORTRAN_NONSHARED
0714f1
+
0714f1
+$(patsubst %.c,%.o,$(nonshared_runtime_C_SRC) $(nonshared)): \
0714f1
+nonshared-%.o: $(srcdir)/runtime/%.c
0714f1
+	$(COMPILE) -c -o $@ $< -DLIBGFORTRAN_NONSHARED
0714f1
+
0714f1
+$(patsubst %.f90,%.lo,$(nonshared_intrinsics_f90_SRC) $(nonshared)): \
0714f1
+nonshared-%.lo: $(srcdir)/intrinsics/%.f90
0714f1
+	$(LTPPFCCOMPILE) -c -o $@ $< -fallow-leading-underscore
0714f1
+
0714f1
+$(patsubst %.f90,%.o,$(nonshared_intrinsics_f90_SRC) $(nonshared)): \
0714f1
+nonshared-%.o: $(srcdir)/intrinsics/%.f90
0714f1
+	$(PPFCCOMPILE) -c -o $@ $< -fallow-leading-underscore
0714f1
+
0714f1
+nonshared_runtime_C_SRC = \
0714f1
+nonshared-ISO_Fortran_binding.c
0714f1
+
0714f1
+nonshared_generated_C_SRC = \
0714f1
+nonshared-findloc0_i1.c \
0714f1
+nonshared-findloc0_i2.c \
0714f1
+nonshared-findloc0_i4.c \
0714f1
+nonshared-findloc0_i8.c \
0714f1
+nonshared-findloc0_i16.c \
0714f1
+nonshared-findloc0_r4.c \
0714f1
+nonshared-findloc0_r8.c \
0714f1
+nonshared-findloc0_r10.c \
0714f1
+nonshared-findloc0_r16.c \
0714f1
+nonshared-findloc0_c4.c \
0714f1
+nonshared-findloc0_c8.c \
0714f1
+nonshared-findloc0_c16.c \
0714f1
+nonshared-findloc0_s1.c \
0714f1
+nonshared-findloc0_s4.c \
0714f1
+nonshared-findloc1_i1.c \
0714f1
+nonshared-findloc1_i2.c \
0714f1
+nonshared-findloc1_i4.c \
0714f1
+nonshared-findloc1_i8.c \
0714f1
+nonshared-findloc1_i16.c \
0714f1
+nonshared-findloc1_r4.c \
0714f1
+nonshared-findloc1_r8.c \
0714f1
+nonshared-findloc1_r10.c \
0714f1
+nonshared-findloc1_r16.c \
0714f1
+nonshared-findloc1_c4.c \
0714f1
+nonshared-findloc1_c8.c \
0714f1
+nonshared-findloc1_c16.c \
0714f1
+nonshared-findloc1_s1.c \
0714f1
+nonshared-findloc1_s4.c \
0714f1
+nonshared-findloc2_s1.c \
0714f1
+nonshared-findloc2_s4.c
0714f1
+
0714f1
+nonshared_intrinsics_C_SRC = \
0714f1
+nonshared-is_contiguous.c \
0714f1
+nonshared-trigd.c
0714f1
+
0714f1
+nonshared_intrinsics_f90_SRC = \
0714f1
+nonshared-random_init.f90
0714f1
+
0714f1
+libgfortran_nonshared80_la_SOURCES = \
0714f1
+$(nonshared_runtime_C_SRC) \
0714f1
+$(nonshared_generated_C_SRC) \
0714f1
+$(nonshared_intrinsics_C_SRC) \
0714f1
+$(nonshared_intrinsics_f90_SRC) \
0714f1
+$(srcdir)/ieee/nonshared-ieee_arithmetic.c \
0714f1
+$(srcdir)/io/nonshared-transfer.c \
0714f1
+$(srcdir)/runtime/nonshared-error.c
0714f1
+
0714f1
 I_M4_DEPS=m4/iparm.m4
0714f1
 I_M4_DEPS0=$(I_M4_DEPS) m4/iforeach.m4
0714f1
 I_M4_DEPS1=$(I_M4_DEPS) m4/ifunction.m4
0714f1
--- libgfortran/ieee/nonshared-ieee_arithmetic.c.jj	2020-05-27 17:46:36.538953840 +0200
0714f1
+++ libgfortran/ieee/nonshared-ieee_arithmetic.c	2020-05-27 17:46:36.538953840 +0200
0714f1
@@ -0,0 +1,64 @@
0714f1
+/* Helper functions in C for IEEE modules
0714f1
+   Copyright (C) 2013-2019 Free Software Foundation, Inc.
0714f1
+   Contributed by Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
0714f1
+
0714f1
+This file is part of the GNU Fortran runtime library (libgfortran).
0714f1
+
0714f1
+Libgfortran is free software; you can redistribute it and/or
0714f1
+modify it under the terms of the GNU General Public
0714f1
+License as published by the Free Software Foundation; either
0714f1
+version 3 of the License, or (at your option) any later version.
0714f1
+
0714f1
+Libgfortran is distributed in the hope that it will be useful,
0714f1
+but WITHOUT ANY WARRANTY; without even the implied warranty of
0714f1
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
0714f1
+GNU General Public License for more details.
0714f1
+
0714f1
+Under Section 7 of GPL version 3, you are granted additional
0714f1
+permissions described in the GCC Runtime Library Exception, version
0714f1
+3.1, as published by the Free Software Foundation.
0714f1
+
0714f1
+You should have received a copy of the GNU General Public License and
0714f1
+a copy of the GCC Runtime Library Exception along with this program;
0714f1
+see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
0714f1
+<http://www.gnu.org/licenses/>.  */
0714f1
+
0714f1
+#include "libgfortran.h"
0714f1
+
0714f1
+GFC_LOGICAL_4
0714f1
+__ieee_arithmetic_MOD_ieee_support_subnormal_4 (gfc_array_r4 *arg)
0714f1
+{
0714f1
+  (void) arg;
0714f1
+  return 1;
0714f1
+}
0714f1
+
0714f1
+GFC_LOGICAL_4
0714f1
+__ieee_arithmetic_MOD_ieee_support_subnormal_8 (gfc_array_r8 *arg)
0714f1
+{
0714f1
+  (void) arg;
0714f1
+  return 1;
0714f1
+}
0714f1
+
0714f1
+#ifdef HAVE_GFC_REAL_10
0714f1
+GFC_LOGICAL_4
0714f1
+__ieee_arithmetic_MOD_ieee_support_subnormal_10 (gfc_array_r10 *arg)
0714f1
+{
0714f1
+  (void) arg;
0714f1
+  return 1;
0714f1
+}
0714f1
+#endif
0714f1
+
0714f1
+#ifdef HAVE_GFC_REAL_16
0714f1
+GFC_LOGICAL_4
0714f1
+__ieee_arithmetic_MOD_ieee_support_subnormal_16 (gfc_array_r16 *arg)
0714f1
+{
0714f1
+  (void) arg;
0714f1
+  return 1;
0714f1
+}
0714f1
+#endif
0714f1
+
0714f1
+GFC_LOGICAL_4
0714f1
+__ieee_arithmetic_MOD_ieee_support_subnormal_noarg (void)
0714f1
+{
0714f1
+  return 1;
0714f1
+}
0714f1
--- libgfortran/Makefile.in.jj	2020-04-30 17:41:43.467589365 +0200
0714f1
+++ libgfortran/Makefile.in	2020-05-28 14:05:15.576583891 +0200
0714f1
@@ -217,7 +217,8 @@ am__uninstall_files_from_dir = { \
0714f1
 am__installdirs = "$(DESTDIR)$(cafexeclibdir)" \
0714f1
 	"$(DESTDIR)$(toolexeclibdir)" "$(DESTDIR)$(toolexeclibdir)" \
0714f1
 	"$(DESTDIR)$(gfor_cdir)" "$(DESTDIR)$(fincludedir)"
0714f1
-LTLIBRARIES = $(cafexeclib_LTLIBRARIES) $(toolexeclib_LTLIBRARIES)
0714f1
+LTLIBRARIES = $(cafexeclib_LTLIBRARIES) $(noinst_LTLIBRARIES) \
0714f1
+	$(toolexeclib_LTLIBRARIES)
0714f1
 libcaf_single_la_LIBADD =
0714f1
 am_libcaf_single_la_OBJECTS = single.lo
0714f1
 libcaf_single_la_OBJECTS = $(am_libcaf_single_la_OBJECTS)
0714f1
@@ -467,6 +468,36 @@ am__objects_65 = $(am__objects_3) $(am__
0714f1
 @onestep_FALSE@am_libgfortran_la_OBJECTS = $(am__objects_65)
0714f1
 @onestep_TRUE@am_libgfortran_la_OBJECTS = libgfortran_c.lo
0714f1
 libgfortran_la_OBJECTS = $(am_libgfortran_la_OBJECTS)
0714f1
+libgfortran_nonshared80_la_LIBADD =
0714f1
+am__objects_66 = nonshared-ISO_Fortran_binding.lo
0714f1
+am__objects_67 = nonshared-findloc0_i1.lo nonshared-findloc0_i2.lo \
0714f1
+	nonshared-findloc0_i4.lo nonshared-findloc0_i8.lo \
0714f1
+	nonshared-findloc0_i16.lo nonshared-findloc0_r4.lo \
0714f1
+	nonshared-findloc0_r8.lo nonshared-findloc0_r10.lo \
0714f1
+	nonshared-findloc0_r16.lo nonshared-findloc0_c4.lo \
0714f1
+	nonshared-findloc0_c8.lo nonshared-findloc0_c16.lo \
0714f1
+	nonshared-findloc0_s1.lo nonshared-findloc0_s4.lo \
0714f1
+	nonshared-findloc1_i1.lo nonshared-findloc1_i2.lo \
0714f1
+	nonshared-findloc1_i4.lo nonshared-findloc1_i8.lo \
0714f1
+	nonshared-findloc1_i16.lo nonshared-findloc1_r4.lo \
0714f1
+	nonshared-findloc1_r8.lo nonshared-findloc1_r10.lo \
0714f1
+	nonshared-findloc1_r16.lo nonshared-findloc1_c4.lo \
0714f1
+	nonshared-findloc1_c8.lo nonshared-findloc1_c16.lo \
0714f1
+	nonshared-findloc1_s1.lo nonshared-findloc1_s4.lo \
0714f1
+	nonshared-findloc2_s1.lo nonshared-findloc2_s4.lo
0714f1
+am__objects_68 = nonshared-is_contiguous.lo \
0714f1
+	nonshared-trigd.lo
0714f1
+am__objects_69 = nonshared-random_init.lo
0714f1
+am_libgfortran_nonshared80_la_OBJECTS = $(am__objects_66) \
0714f1
+	$(am__objects_67) $(am__objects_68) $(am__objects_69) \
0714f1
+	nonshared-ieee_arithmetic.lo nonshared-transfer.lo \
0714f1
+	nonshared-error.lo
0714f1
+libgfortran_nonshared80_la_OBJECTS =  \
0714f1
+	$(am_libgfortran_nonshared80_la_OBJECTS)
0714f1
+AM_V_lt = $(am__v_lt_@AM_V@)
0714f1
+am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
0714f1
+am__v_lt_0 = --silent
0714f1
+am__v_lt_1 = 
0714f1
 AM_V_P = $(am__v_P_@AM_V@)
0714f1
 am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
0714f1
 am__v_P_0 = false
0714f1
@@ -483,10 +514,6 @@ DEFAULT_INCLUDES = -I.@am__isrc@
0714f1
 depcomp = $(SHELL) $(top_srcdir)/../depcomp
0714f1
 am__depfiles_maybe = depfiles
0714f1
 am__mv = mv -f
0714f1
-AM_V_lt = $(am__v_lt_@AM_V@)
0714f1
-am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
0714f1
-am__v_lt_0 = --silent
0714f1
-am__v_lt_1 = 
0714f1
 PPFCCOMPILE = $(FC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
0714f1
 	$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_FCFLAGS) $(FCFLAGS)
0714f1
 LTPPFCCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=FC $(AM_LIBTOOLFLAGS) \
0714f1
@@ -530,7 +557,8 @@ AM_V_FC = $(am__v_FC_@AM_V@)
0714f1
 am__v_FC_ = $(am__v_FC_@AM_DEFAULT_V@)
0714f1
 am__v_FC_0 = @echo "  FC      " $@;
0714f1
 am__v_FC_1 = 
0714f1
-SOURCES = $(libcaf_single_la_SOURCES) $(libgfortran_la_SOURCES)
0714f1
+SOURCES = $(libcaf_single_la_SOURCES) $(libgfortran_la_SOURCES) \
0714f1
+	$(libgfortran_nonshared80_la_SOURCES)
0714f1
 am__can_run_installinfo = \
0714f1
   case $$AM_UPDATE_INFO_DIR in \
0714f1
     n|no|NO) false;; \
0714f1
@@ -726,6 +754,7 @@ LTLDFLAGS = $(shell $(SHELL) $(top_srcdi
0714f1
 	    $(lt_host_flags)
0714f1
 
0714f1
 toolexeclib_LTLIBRARIES = libgfortran.la
0714f1
+noinst_LTLIBRARIES = libgfortran_nonshared80.la
0714f1
 toolexeclib_DATA = libgfortran.spec
0714f1
 libgfortran_la_LINK = $(LINK) $(libgfortran_la_LDFLAGS)
0714f1
 libgfortran_la_LDFLAGS = -version-info `grep -v '^\#' $(srcdir)/libtool-version` \
0714f1
@@ -1553,6 +1582,57 @@ prereq_SRC = $(gfor_src) $(gfor_built_sr
0714f1
 #libgfortran_F.lo: 
0714f1
 #	$(LTPPFCCOMPILE) -c -o $@ $^ -combine
0714f1
 @onestep_TRUE@libgfortran_la_SOURCES = libgfortran_c.c $(filter-out %.c,$(prereq_SRC))
0714f1
+nonshared_runtime_C_SRC = \
0714f1
+nonshared-ISO_Fortran_binding.c
0714f1
+
0714f1
+nonshared_generated_C_SRC = \
0714f1
+nonshared-findloc0_i1.c \
0714f1
+nonshared-findloc0_i2.c \
0714f1
+nonshared-findloc0_i4.c \
0714f1
+nonshared-findloc0_i8.c \
0714f1
+nonshared-findloc0_i16.c \
0714f1
+nonshared-findloc0_r4.c \
0714f1
+nonshared-findloc0_r8.c \
0714f1
+nonshared-findloc0_r10.c \
0714f1
+nonshared-findloc0_r16.c \
0714f1
+nonshared-findloc0_c4.c \
0714f1
+nonshared-findloc0_c8.c \
0714f1
+nonshared-findloc0_c16.c \
0714f1
+nonshared-findloc0_s1.c \
0714f1
+nonshared-findloc0_s4.c \
0714f1
+nonshared-findloc1_i1.c \
0714f1
+nonshared-findloc1_i2.c \
0714f1
+nonshared-findloc1_i4.c \
0714f1
+nonshared-findloc1_i8.c \
0714f1
+nonshared-findloc1_i16.c \
0714f1
+nonshared-findloc1_r4.c \
0714f1
+nonshared-findloc1_r8.c \
0714f1
+nonshared-findloc1_r10.c \
0714f1
+nonshared-findloc1_r16.c \
0714f1
+nonshared-findloc1_c4.c \
0714f1
+nonshared-findloc1_c8.c \
0714f1
+nonshared-findloc1_c16.c \
0714f1
+nonshared-findloc1_s1.c \
0714f1
+nonshared-findloc1_s4.c \
0714f1
+nonshared-findloc2_s1.c \
0714f1
+nonshared-findloc2_s4.c
0714f1
+
0714f1
+nonshared_intrinsics_C_SRC = \
0714f1
+nonshared-is_contiguous.c \
0714f1
+nonshared-trigd.c
0714f1
+
0714f1
+nonshared_intrinsics_f90_SRC = \
0714f1
+nonshared-random_init.f90
0714f1
+
0714f1
+libgfortran_nonshared80_la_SOURCES = \
0714f1
+$(nonshared_runtime_C_SRC) \
0714f1
+$(nonshared_generated_C_SRC) \
0714f1
+$(nonshared_intrinsics_C_SRC) \
0714f1
+$(nonshared_intrinsics_f90_SRC) \
0714f1
+$(srcdir)/ieee/nonshared-ieee_arithmetic.c \
0714f1
+$(srcdir)/io/nonshared-transfer.c \
0714f1
+$(srcdir)/runtime/nonshared-error.c
0714f1
+
0714f1
 I_M4_DEPS = m4/iparm.m4
0714f1
 I_M4_DEPS0 = $(I_M4_DEPS) m4/iforeach.m4
0714f1
 I_M4_DEPS1 = $(I_M4_DEPS) m4/ifunction.m4
0714f1
@@ -1663,6 +1743,17 @@ clean-cafexeclibLTLIBRARIES:
0714f1
 	  rm -f $${locs}; \
0714f1
 	}
0714f1
 
0714f1
+clean-noinstLTLIBRARIES:
0714f1
+	-test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES)
0714f1
+	@list='$(noinst_LTLIBRARIES)'; \
0714f1
+	locs=`for p in $$list; do echo $$p; done | \
0714f1
+	      sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \
0714f1
+	      sort -u`; \
0714f1
+	test -z "$$locs" || { \
0714f1
+	  echo rm -f $${locs}; \
0714f1
+	  rm -f $${locs}; \
0714f1
+	}
0714f1
+
0714f1
 install-toolexeclibLTLIBRARIES: $(toolexeclib_LTLIBRARIES)
0714f1
 	@$(NORMAL_INSTALL)
0714f1
 	@list='$(toolexeclib_LTLIBRARIES)'; test -n "$(toolexeclibdir)" || list=; \
0714f1
@@ -1704,6 +1795,9 @@ libcaf_single.la: $(libcaf_single_la_OBJ
0714f1
 libgfortran.la: $(libgfortran_la_OBJECTS) $(libgfortran_la_DEPENDENCIES) $(EXTRA_libgfortran_la_DEPENDENCIES) 
0714f1
 	$(AM_V_GEN)$(libgfortran_la_LINK) -rpath $(toolexeclibdir) $(libgfortran_la_OBJECTS) $(libgfortran_la_LIBADD) $(LIBS)
0714f1
 
0714f1
+libgfortran_nonshared80.la: $(libgfortran_nonshared80_la_OBJECTS) $(libgfortran_nonshared80_la_DEPENDENCIES) $(EXTRA_libgfortran_nonshared80_la_DEPENDENCIES) 
0714f1
+	$(AM_V_FCLD)$(FCLINK)  $(libgfortran_nonshared80_la_OBJECTS) $(libgfortran_nonshared80_la_LIBADD) $(LIBS)
0714f1
+
0714f1
 mostlyclean-compile:
0714f1
 	-rm -f *.$(OBJEXT)
0714f1
 
0714f1
@@ -2118,6 +2212,42 @@ distclean-compile:
0714f1
 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/minval_r8.Plo@am__quote@
0714f1
 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/move_alloc.Plo@am__quote@
0714f1
 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mvbits.Plo@am__quote@
0714f1
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/nonshared-ISO_Fortran_binding.Plo@am__quote@
0714f1
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/nonshared-error.Plo@am__quote@
0714f1
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/nonshared-findloc0_c16.Plo@am__quote@
0714f1
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/nonshared-findloc0_c4.Plo@am__quote@
0714f1
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/nonshared-findloc0_c8.Plo@am__quote@
0714f1
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/nonshared-findloc0_i1.Plo@am__quote@
0714f1
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/nonshared-findloc0_i16.Plo@am__quote@
0714f1
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/nonshared-findloc0_i2.Plo@am__quote@
0714f1
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/nonshared-findloc0_i4.Plo@am__quote@
0714f1
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/nonshared-findloc0_i8.Plo@am__quote@
0714f1
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/nonshared-findloc0_r10.Plo@am__quote@
0714f1
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/nonshared-findloc0_r16.Plo@am__quote@
0714f1
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/nonshared-findloc0_r4.Plo@am__quote@
0714f1
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/nonshared-findloc0_r8.Plo@am__quote@
0714f1
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/nonshared-findloc0_s1.Plo@am__quote@
0714f1
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/nonshared-findloc0_s4.Plo@am__quote@
0714f1
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/nonshared-findloc1_c16.Plo@am__quote@
0714f1
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/nonshared-findloc1_c4.Plo@am__quote@
0714f1
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/nonshared-findloc1_c8.Plo@am__quote@
0714f1
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/nonshared-findloc1_i1.Plo@am__quote@
0714f1
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/nonshared-findloc1_i16.Plo@am__quote@
0714f1
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/nonshared-findloc1_i2.Plo@am__quote@
0714f1
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/nonshared-findloc1_i4.Plo@am__quote@
0714f1
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/nonshared-findloc1_i8.Plo@am__quote@
0714f1
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/nonshared-findloc1_r10.Plo@am__quote@
0714f1
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/nonshared-findloc1_r16.Plo@am__quote@
0714f1
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/nonshared-findloc1_r4.Plo@am__quote@
0714f1
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/nonshared-findloc1_r8.Plo@am__quote@
0714f1
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/nonshared-findloc1_s1.Plo@am__quote@
0714f1
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/nonshared-findloc1_s4.Plo@am__quote@
0714f1
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/nonshared-findloc2_s1.Plo@am__quote@
0714f1
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/nonshared-findloc2_s4.Plo@am__quote@
0714f1
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/nonshared-ieee_arithmetic.Plo@am__quote@
0714f1
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/nonshared-is_contiguous.Plo@am__quote@
0714f1
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/nonshared-transfer.Plo@am__quote@
0714f1
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/nonshared-trigd.Plo@am__quote@
0714f1
 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/norm2_r10.Plo@am__quote@
0714f1
 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/norm2_r16.Plo@am__quote@
0714f1
 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/norm2_r4.Plo@am__quote@
0714f1
@@ -6658,6 +6788,27 @@ ieee_helper.lo: ieee/ieee_helper.c
0714f1
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
0714f1
 @am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ieee_helper.lo `test -f 'ieee/ieee_helper.c' || echo '$(srcdir)/'`ieee/ieee_helper.c
0714f1
 
0714f1
+nonshared-ieee_arithmetic.lo: $(srcdir)/ieee/nonshared-ieee_arithmetic.c
0714f1
+@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT nonshared-ieee_arithmetic.lo -MD -MP -MF $(DEPDIR)/nonshared-ieee_arithmetic.Tpo -c -o nonshared-ieee_arithmetic.lo `test -f '$(srcdir)/ieee/nonshared-ieee_arithmetic.c' || echo '$(srcdir)/'`$(srcdir)/ieee/nonshared-ieee_arithmetic.c
0714f1
+@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/nonshared-ieee_arithmetic.Tpo $(DEPDIR)/nonshared-ieee_arithmetic.Plo
0714f1
+@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='$(srcdir)/ieee/nonshared-ieee_arithmetic.c' object='nonshared-ieee_arithmetic.lo' libtool=yes @AMDEPBACKSLASH@
0714f1
+@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
0714f1
+@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o nonshared-ieee_arithmetic.lo `test -f '$(srcdir)/ieee/nonshared-ieee_arithmetic.c' || echo '$(srcdir)/'`$(srcdir)/ieee/nonshared-ieee_arithmetic.c
0714f1
+
0714f1
+nonshared-transfer.lo: $(srcdir)/io/nonshared-transfer.c
0714f1
+@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT nonshared-transfer.lo -MD -MP -MF $(DEPDIR)/nonshared-transfer.Tpo -c -o nonshared-transfer.lo `test -f '$(srcdir)/io/nonshared-transfer.c' || echo '$(srcdir)/'`$(srcdir)/io/nonshared-transfer.c
0714f1
+@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/nonshared-transfer.Tpo $(DEPDIR)/nonshared-transfer.Plo
0714f1
+@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='$(srcdir)/io/nonshared-transfer.c' object='nonshared-transfer.lo' libtool=yes @AMDEPBACKSLASH@
0714f1
+@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
0714f1
+@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o nonshared-transfer.lo `test -f '$(srcdir)/io/nonshared-transfer.c' || echo '$(srcdir)/'`$(srcdir)/io/nonshared-transfer.c
0714f1
+
0714f1
+nonshared-error.lo: $(srcdir)/runtime/nonshared-error.c
0714f1
+@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT nonshared-error.lo -MD -MP -MF $(DEPDIR)/nonshared-error.Tpo -c -o nonshared-error.lo `test -f '$(srcdir)/runtime/nonshared-error.c' || echo '$(srcdir)/'`$(srcdir)/runtime/nonshared-error.c
0714f1
+@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/nonshared-error.Tpo $(DEPDIR)/nonshared-error.Plo
0714f1
+@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='$(srcdir)/runtime/nonshared-error.c' object='nonshared-error.lo' libtool=yes @AMDEPBACKSLASH@
0714f1
+@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
0714f1
+@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o nonshared-error.lo `test -f '$(srcdir)/runtime/nonshared-error.c' || echo '$(srcdir)/'`$(srcdir)/runtime/nonshared-error.c
0714f1
+
0714f1
 .f90.o:
0714f1
 	$(AM_V_FC)$(FCCOMPILE) -c -o $@ $<
0714f1
 
0714f1
@@ -6852,7 +7003,8 @@ maintainer-clean-generic:
0714f1
 clean: clean-am
0714f1
 
0714f1
 clean-am: clean-cafexeclibLTLIBRARIES clean-generic clean-libtool \
0714f1
-	clean-local clean-toolexeclibLTLIBRARIES mostlyclean-am
0714f1
+	clean-local clean-noinstLTLIBRARIES \
0714f1
+	clean-toolexeclibLTLIBRARIES mostlyclean-am
0714f1
 
0714f1
 distclean: distclean-am
0714f1
 	-rm -f $(am__CONFIG_DISTCLEAN_FILES)
0714f1
@@ -6932,14 +7084,15 @@ uninstall-am: uninstall-cafexeclibLTLIBR
0714f1
 .PHONY: CTAGS GTAGS TAGS all all-am all-local am--refresh check \
0714f1
 	check-am clean clean-cafexeclibLTLIBRARIES clean-cscope \
0714f1
 	clean-generic clean-libtool clean-local \
0714f1
-	clean-toolexeclibLTLIBRARIES cscope cscopelist-am ctags \
0714f1
-	ctags-am distclean distclean-compile distclean-generic \
0714f1
-	distclean-hdr distclean-libtool distclean-local distclean-tags \
0714f1
-	dvi dvi-am html html-am info info-am install install-am \
0714f1
-	install-cafexeclibLTLIBRARIES install-data install-data-am \
0714f1
-	install-dvi install-dvi-am install-exec install-exec-am \
0714f1
-	install-exec-local install-gfor_cHEADERS install-html \
0714f1
-	install-html-am install-info install-info-am install-man \
0714f1
+	clean-noinstLTLIBRARIES clean-toolexeclibLTLIBRARIES cscope \
0714f1
+	cscopelist-am ctags ctags-am distclean distclean-compile \
0714f1
+	distclean-generic distclean-hdr distclean-libtool \
0714f1
+	distclean-local distclean-tags dvi dvi-am html html-am info \
0714f1
+	info-am install install-am install-cafexeclibLTLIBRARIES \
0714f1
+	install-data install-data-am install-dvi install-dvi-am \
0714f1
+	install-exec install-exec-am install-exec-local \
0714f1
+	install-gfor_cHEADERS install-html install-html-am \
0714f1
+	install-info install-info-am install-man \
0714f1
 	install-nodist_fincludeHEADERS install-pdf install-pdf-am \
0714f1
 	install-ps install-ps-am install-strip install-toolexeclibDATA \
0714f1
 	install-toolexeclibLTLIBRARIES installcheck installcheck-am \
0714f1
@@ -6997,6 +7150,38 @@ ieee_arithmetic.mod: ieee_arithmetic.lo
0714f1
 @onestep_TRUE@libgfortran_c.lo: $(filter %.c,$(prereq_SRC))
0714f1
 @onestep_TRUE@	$(LTCOMPILE) -c -o $@ $^ -combine
0714f1
 
0714f1
+$(patsubst %.c,%.lo,$(nonshared_generated_C_SRC) $(nonshared)): \
0714f1
+nonshared-%.lo: $(srcdir)/generated/%.c
0714f1
+	$(LTCOMPILE) -c -o $@ $< -DLIBGFORTRAN_NONSHARED
0714f1
+
0714f1
+$(patsubst %.c,%.o,$(nonshared_generated_C_SRC) $(nonshared)): \
0714f1
+nonshared-%.o: $(srcdir)/generated/%.c
0714f1
+	$(COMPILE) -c -o $@ $< -DLIBGFORTRAN_NONSHARED
0714f1
+
0714f1
+$(patsubst %.c,%.lo,$(nonshared_intrinsics_C_SRC) $(nonshared)): \
0714f1
+nonshared-%.lo: $(srcdir)/intrinsics/%.c
0714f1
+	$(LTCOMPILE) -c -o $@ $< -DLIBGFORTRAN_NONSHARED
0714f1
+
0714f1
+$(patsubst %.c,%.o,$(nonshared_intrinsics_C_SRC) $(nonshared)): \
0714f1
+nonshared-%.o: $(srcdir)/intrinsics/%.c
0714f1
+	$(COMPILE) -c -o $@ $< -DLIBGFORTRAN_NONSHARED
0714f1
+
0714f1
+$(patsubst %.c,%.lo,$(nonshared_runtime_C_SRC) $(nonshared)): \
0714f1
+nonshared-%.lo: $(srcdir)/runtime/%.c
0714f1
+	$(LTCOMPILE) -c -o $@ $< -DLIBGFORTRAN_NONSHARED
0714f1
+
0714f1
+$(patsubst %.c,%.o,$(nonshared_runtime_C_SRC) $(nonshared)): \
0714f1
+nonshared-%.o: $(srcdir)/runtime/%.c
0714f1
+	$(COMPILE) -c -o $@ $< -DLIBGFORTRAN_NONSHARED
0714f1
+
0714f1
+$(patsubst %.f90,%.lo,$(nonshared_intrinsics_f90_SRC) $(nonshared)): \
0714f1
+nonshared-%.lo: $(srcdir)/intrinsics/%.f90
0714f1
+	$(LTPPFCCOMPILE) -c -o $@ $< -fallow-leading-underscore
0714f1
+
0714f1
+$(patsubst %.f90,%.o,$(nonshared_intrinsics_f90_SRC) $(nonshared)): \
0714f1
+nonshared-%.o: $(srcdir)/intrinsics/%.f90
0714f1
+	$(PPFCCOMPILE) -c -o $@ $< -fallow-leading-underscore
0714f1
+
0714f1
 kinds.h: $(srcdir)/mk-kinds-h.sh
0714f1
 	$(SHELL) $(srcdir)/mk-kinds-h.sh '$(FCCOMPILE)' > $@ || rm $@
0714f1
 
0714f1
--- libgfortran/libgfortran.h.jj	2020-04-30 17:41:43.652586644 +0200
0714f1
+++ libgfortran/libgfortran.h	2020-05-27 17:46:36.530953956 +0200
0714f1
@@ -195,7 +195,7 @@ extern int __mingw_snprintf (char *, siz
0714f1
 # define internal_proto(x)	sym_rename(x, IPREFIX(x))
0714f1
 #endif
0714f1
 
0714f1
-#if defined(HAVE_ATTRIBUTE_VISIBILITY) && defined(HAVE_ATTRIBUTE_ALIAS)
0714f1
+#if defined(HAVE_ATTRIBUTE_VISIBILITY) && defined(HAVE_ATTRIBUTE_ALIAS) && !defined(LIBGFORTRAN_NONSHARED)
0714f1
 # define export_proto(x)	sym_rename(x, PREFIX(x))
0714f1
 # define export_proto_np(x)	extern char swallow_semicolon
0714f1
 # define iexport_proto(x)	internal_proto(x)
0714f1
@@ -270,6 +270,10 @@ typedef GFC_UINTEGER_4 gfc_char4_t;
0714f1
    simply equal to the kind parameter itself.  */
0714f1
 #define GFC_SIZE_OF_CHAR_KIND(kind) (kind)
0714f1
 
0714f1
+#ifdef LIBGFORTRAN_NONSHARED
0714f1
+#define big_endian (__BYTE_ORDER__ == __ORDER_BIG_ENDIAN__)
0714f1
+#endif
0714f1
+
0714f1
 #define GFOR_POINTER_TO_L1(p, kind) \
0714f1
   ((__BYTE_ORDER__ == __ORDER_BIG_ENDIAN__ ? 1: 0) * (kind - 1) + (GFC_LOGICAL_1 *)(p))
0714f1
 
0714f1
@@ -1774,4 +1778,63 @@ internal_proto(cshift1_16_c16);
0714f1
 #define HAVE_GFC_UINTEGER_1 1
0714f1
 #define HAVE_GFC_UINTEGER_4 1
0714f1
 
0714f1
+#ifdef LIBGFORTRAN_NONSHARED
0714f1
+#include <stdlib.h>
0714f1
+#include <string.h>              
0714f1
+#include <errno.h>
0714f1
+
0714f1
+#define internal_malloc_size nonshared_internal_malloc_size
0714f1
+#define xmalloc nonshared_internal_xmalloc
0714f1
+#define xmallocarray nonshared_internal_xmallocarray
0714f1
+#define reshape_packed nonshared_reshape_packed
0714f1
+static inline __attribute__((__always_inline__, __unused__))
0714f1
+void *
0714f1
+internal_malloc_size (size_t size)
0714f1
+{
0714f1
+  void *p;
0714f1
+
0714f1
+  if (size == 0)
0714f1
+    return NULL;
0714f1
+
0714f1
+  p = (void *) malloc (size);
0714f1
+  if (p == NULL)
0714f1
+    os_error ("Memory allocation failed");
0714f1
+  return p;
0714f1
+}
0714f1
+
0714f1
+static inline __attribute__((__always_inline__, __unused__))
0714f1
+void *
0714f1
+xmalloc (size_t size)
0714f1
+{
0714f1
+  return internal_malloc_size (size ? size : 1);
0714f1
+}
0714f1
+
0714f1
+static inline __attribute__((__always_inline__, __unused__))
0714f1
+void *
0714f1
+xmallocarray (size_t nmemb, size_t size)
0714f1
+{
0714f1
+  if (!nmemb || !size)
0714f1
+    size = nmemb = 1;
0714f1
+  else if (__builtin_expect ((nmemb | size)
0714f1
+			     >= (((size_t) 1) << (__CHAR_BIT__
0714f1
+						  * sizeof (size_t) / 2)), 0)
0714f1
+	   && nmemb > __SIZE_MAX__ / size)
0714f1
+    {
0714f1
+      errno = ENOMEM;
0714f1
+      os_error ("Integer overflow in xmallocarray");
0714f1
+    }
0714f1
+
0714f1
+  return internal_malloc_size (nmemb * size);
0714f1
+}
0714f1
+
0714f1
+static inline __attribute__((__always_inline__, __unused__))
0714f1
+#include "intrinsics/reshape_packed.c"
0714f1
+
0714f1
+struct no_bounds_check { int bounds_check; };
0714f1
+#define compile_options ((struct no_bounds_check) { .bounds_check = 0 })
0714f1
+
0714f1
+#define internal_error(x, y...) runtime_error (y)
0714f1
+
0714f1
+#endif
0714f1
+
0714f1
 #endif  /* LIBGFOR_H  */
0714f1
--- libgfortran/runtime/nonshared-error.c.jj	2020-05-27 19:01:38.937435776 +0200
0714f1
+++ libgfortran/runtime/nonshared-error.c	2020-05-27 19:11:53.280403140 +0200
0714f1
@@ -0,0 +1,56 @@
0714f1
+/* Copyright (C) 2020 Free Software Foundation, Inc.
0714f1
+
0714f1
+This file is part of the GNU Fortran runtime library (libgfortran).
0714f1
+
0714f1
+Libgfortran is free software; you can redistribute it and/or modify
0714f1
+it under the terms of the GNU General Public License as published by
0714f1
+the Free Software Foundation; either version 3, or (at your option)
0714f1
+any later version.
0714f1
+
0714f1
+Libgfortran is distributed in the hope that it will be useful,
0714f1
+but WITHOUT ANY WARRANTY; without even the implied warranty of
0714f1
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
0714f1
+GNU General Public License for more details.
0714f1
+
0714f1
+Under Section 7 of GPL version 3, you are granted additional
0714f1
+permissions described in the GCC Runtime Library Exception, version
0714f1
+3.1, as published by the Free Software Foundation.
0714f1
+
0714f1
+You should have received a copy of the GNU General Public License and
0714f1
+a copy of the GCC Runtime Library Exception along with this program;
0714f1
+see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
0714f1
+<http://www.gnu.org/licenses/>.  */
0714f1
+
0714f1
+
0714f1
+#define LIBGFORTRAN_NONSHARED
0714f1
+#include "libgfortran.h"
0714f1
+#include "io.h"
0714f1
+#include "async.h"
0714f1
+
0714f1
+#include <string.h>
0714f1
+#include <stdio.h>
0714f1
+
0714f1
+/* Improved version of os_error with a printf style format string and
0714f1
+   a locus.  */
0714f1
+
0714f1
+void
0714f1
+os_error_at (const char *where, const char *message, ...)
0714f1
+{
0714f1
+  char buf[4096];
0714f1
+  size_t len = strlen (where);
0714f1
+  int written;
0714f1
+  va_list ap;
0714f1
+
0714f1
+  if (len >= 2048)
0714f1
+    os_error ("Unknown error");
0714f1
+  memcpy (buf, where, len);
0714f1
+  memcpy (buf + len, ": ", 2);
0714f1
+  va_start (ap, message);
0714f1
+  written = vsnprintf (buf + len + 2, 4095 - len - 2, message, ap);
0714f1
+  va_end (ap);
0714f1
+  if (written < 0)
0714f1
+    written = 0;
0714f1
+  buf[len + 2 + written] = '\0';
0714f1
+  os_error (buf);
0714f1
+}
0714f1
+iexport(os_error_at);
0714f1
--- libgfortran/io/nonshared-transfer.c.jj	2020-05-27 17:46:36.539953825 +0200
0714f1
+++ libgfortran/io/nonshared-transfer.c	2020-05-27 17:46:36.539953825 +0200
0714f1
@@ -0,0 +1,42 @@
0714f1
+/* Copyright (C) 2002-2019 Free Software Foundation, Inc.
0714f1
+   Contributed by Andy Vaught
0714f1
+   Namelist transfer functions contributed by Paul Thomas
0714f1
+   F2003 I/O support contributed by Jerry DeLisle
0714f1
+
0714f1
+This file is part of the GNU Fortran runtime library (libgfortran).
0714f1
+
0714f1
+Libgfortran is free software; you can redistribute it and/or modify
0714f1
+it under the terms of the GNU General Public License as published by
0714f1
+the Free Software Foundation; either version 3, or (at your option)
0714f1
+any later version.
0714f1
+
0714f1
+Libgfortran is distributed in the hope that it will be useful,
0714f1
+but WITHOUT ANY WARRANTY; without even the implied warranty of
0714f1
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
0714f1
+GNU General Public License for more details.
0714f1
+
0714f1
+Under Section 7 of GPL version 3, you are granted additional
0714f1
+permissions described in the GCC Runtime Library Exception, version
0714f1
+3.1, as published by the Free Software Foundation.
0714f1
+
0714f1
+You should have received a copy of the GNU General Public License and
0714f1
+a copy of the GCC Runtime Library Exception along with this program;
0714f1
+see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
0714f1
+<http://www.gnu.org/licenses/>.  */
0714f1
+
0714f1
+
0714f1
+/* transfer.c -- Top level handling of data transfer statements.  */
0714f1
+
0714f1
+#include "io.h"
0714f1
+#include "fbuf.h"
0714f1
+#include "format.h"
0714f1
+#include "unix.h"
0714f1
+#include "async.h"
0714f1
+#include <string.h>
0714f1
+#include <errno.h>
0714f1
+
0714f1
+void
0714f1
+st_wait_async (st_parameter_wait *wtp)
0714f1
+{
0714f1
+  (void) wtp;
0714f1
+}