Commit f9576cc5 by Jerry DeLisle

2011-02-19 Jerry DeLisle <jvdelisle@gcc.gnu.org>

	    Tobias Burnus  <burnus@net-b.de>

	* lib/target-supports.exp
	(check_effective_target_fortran_large_real): New check for large reals.
	* gfortran.dg/nan_7.f90: New test.

Co-Authored-By: Tobias Burnus <burnus@net-b.de>

From-SVN: r170320
parent 66115309
2011-02-19 Jerry DeLisle <jvdelisle@gcc.gnu.org> 2011-02-19 Jerry DeLisle <jvdelisle@gcc.gnu.org>
Tobias Burnus <burnus@net-b.de>
* lib/target-supports.exp
(check_effective_target_fortran_large_real): New check for large reals.
* gfortran.dg/nan_7.f90: New test.
2011-02-19 Jerry DeLisle <jvdelisle@gcc.gnu.org>
PR libgfortran/47567 PR libgfortran/47567
* gfortran.dg/fmt_f0_1.f90: Update test. * gfortran.dg/fmt_f0_1.f90: Update test.
......
! { dg-do run }
! { dg-options "-fno-range-check" }
! { dg-require-effective-target fortran_real_16 }
! { dg-require-effective-target fortran_integer_16 }
! PR47293 NAN not correctly read
character(len=200) :: str
real(16) :: r
integer(16) :: k2
integer(16), parameter :: quietnan = 170099645085600953110659059745250344960
r = 1.0
str = 'NAN' ; read(str,*) r
k2 = transfer(r,k2)
k2 = iand(k2, z'fff80000000000000000000000000000')
if (k2.ne.quietnan) call abort
end
...@@ -956,6 +956,22 @@ proc check_effective_target_fortran_large_real { } { ...@@ -956,6 +956,22 @@ proc check_effective_target_fortran_large_real { } {
}] }]
} }
# Return 1 if the target supports Fortran real kind real(16),
# 0 otherwise. Contrary to check_effective_target_fortran_large_real
# this checks for Real(16) only; the other returned real(10) if
# both real(10) and real(16) are available.
#
# When the target name changes, replace the cached result.
proc check_effective_target_fortran_real_16 { } {
return [check_no_compiler_messages fortran_real_16 executable {
! Fortran
real(kind=16) :: x
x = cos (x)
end
}]
}
# Return 1 if the target supports Fortran integer kinds larger than # Return 1 if the target supports Fortran integer kinds larger than
# integer(8), 0 otherwise. # integer(8), 0 otherwise.
# #
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment