summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/c_ptr_tests_15.f90
diff options
context:
space:
mode:
authorupstream source tree <ports@midipix.org>2015-03-15 20:14:05 -0400
committerupstream source tree <ports@midipix.org>2015-03-15 20:14:05 -0400
commit554fd8c5195424bdbcabf5de30fdc183aba391bd (patch)
tree976dc5ab7fddf506dadce60ae936f43f58787092 /gcc/testsuite/gfortran.dg/c_ptr_tests_15.f90
downloadcbb-gcc-4.6.4-554fd8c5195424bdbcabf5de30fdc183aba391bd.tar.bz2
cbb-gcc-4.6.4-554fd8c5195424bdbcabf5de30fdc183aba391bd.tar.xz
obtained gcc-4.6.4.tar.bz2 from upstream website;upstream
verified gcc-4.6.4.tar.bz2.sig; imported gcc-4.6.4 source tree from verified upstream tarball. downloading a git-generated archive based on the 'upstream' tag should provide you with a source tree that is binary identical to the one extracted from the above tarball. if you have obtained the source via the command 'git clone', however, do note that line-endings of files in your working directory might differ from line-endings of the respective files in the upstream repository.
Diffstat (limited to 'gcc/testsuite/gfortran.dg/c_ptr_tests_15.f90')
-rw-r--r--gcc/testsuite/gfortran.dg/c_ptr_tests_15.f9053
1 files changed, 53 insertions, 0 deletions
diff --git a/gcc/testsuite/gfortran.dg/c_ptr_tests_15.f90 b/gcc/testsuite/gfortran.dg/c_ptr_tests_15.f90
new file mode 100644
index 000000000..1ce0c15fd
--- /dev/null
+++ b/gcc/testsuite/gfortran.dg/c_ptr_tests_15.f90
@@ -0,0 +1,53 @@
+! { dg-do compile }
+! { dg-options "-fwhole-file -fdump-tree-original" }
+!
+! PR fortran/43042 - fix ICE with c_null_ptr when using
+! -fwhole-file (or -flto, which implies -fwhole-file).
+!
+! Testcase based on c_ptr_tests_14.f90 (PR fortran/41298)
+! Check that c_null_ptr default initializer is really applied
+
+module m
+ use iso_c_binding
+ type, public :: fgsl_file
+ type(c_ptr) :: gsl_file = c_null_ptr
+ type(c_funptr) :: gsl_func = c_null_funptr
+ type(c_ptr) :: NIptr
+ type(c_funptr) :: NIfunptr
+ end type fgsl_file
+contains
+ subroutine sub(aaa,bbb)
+ type(fgsl_file), intent(out) :: aaa
+ type(fgsl_file), intent(inout) :: bbb
+ end subroutine
+ subroutine proc() bind(C)
+ end subroutine proc
+end module m
+
+program test
+ use m
+ implicit none
+ type(fgsl_file) :: file, noreinit
+ integer, target :: tgt
+
+ call sub(file, noreinit)
+ if(c_associated(file%gsl_file)) call abort()
+ if(c_associated(file%gsl_func)) call abort()
+
+ file%gsl_file = c_loc(tgt)
+ file%gsl_func = c_funloc(proc)
+ call sub(file, noreinit)
+ if(c_associated(file%gsl_file)) call abort()
+ if(c_associated(file%gsl_func)) call abort()
+end program test
+
+! { dg-final { scan-tree-dump-times "gsl_file = 0B" 1 "original" } }
+! { dg-final { scan-tree-dump-times "gsl_func = 0B" 1 "original" } }
+
+! { dg-final { scan-tree-dump-times "NIptr = 0B" 0 "original" } }
+! { dg-final { scan-tree-dump-times "NIfunptr = 0B" 0 "original" } }
+
+! { dg-final { scan-tree-dump-times "bbb =" 0 "original" } }
+
+! { dg-final { cleanup-tree-dump "original" } }
+! { dg-final { cleanup-modules "m" } }