Commit 7db2c621 by Francois-Xavier Coudert Committed by François-Xavier Coudert

nan_1.f90: Rename module into aux2 to avoid cygwin hanging on the testcase.

	* gfortran.dg/nan_1.f90: Rename module into aux2 to avoid cygwin
	hanging on the testcase.

From-SVN: r127240
parent 5958f5cb
2007-08-06 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
* gfortran.dg/nan_1.f90: Rename module into aux2 to avoid cygwin
hanging on the testcase.
2007-08-05 Andrew Pinski <andrew_pinski@playstation.sony.com> 2007-08-05 Andrew Pinski <andrew_pinski@playstation.sony.com>
PR middle-end/32988 PR middle-end/32988
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
! !
! { dg-do run } ! { dg-do run }
! !
module aux module aux2
interface isnan interface isnan
module procedure isnan_r module procedure isnan_r
module procedure isnan_d module procedure isnan_d
...@@ -42,10 +42,10 @@ contains ...@@ -42,10 +42,10 @@ contains
isinf = (x > huge(x)) .or. (x < -huge(x)) isinf = (x > huge(x)) .or. (x < -huge(x))
end function isinf_d end function isinf_d
end module aux end module aux2
program test program test
use aux use aux2
implicit none implicit none
real :: nan, large, inf real :: nan, large, inf
...@@ -121,4 +121,4 @@ program test ...@@ -121,4 +121,4 @@ program test
end program test end program test
! { dg-final { cleanup-modules "aux" } } ! { dg-final { cleanup-modules "aux2" } }
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