Commit fa00a5fe by Jakub Jelinek Committed by Jakub Jelinek

re PR testsuite/59534 (FAIL: libgomp.fortran/retval1.f90 execution test due to denormals)

	PR testsuite/59534
	* testsuite/libgomp.fortran/retval1.f90 (e5): Avoid non-shortcircuited
	comparisons.

From-SVN: r206051
parent c17ac06a
2013-12-17 Jakub Jelinek <jakub@redhat.com>
PR testsuite/59534
* testsuite/libgomp.fortran/retval1.f90 (e5): Avoid non-shortcircuited
comparisons.
2013-12-16 Jakub Jelinek <jakub@redhat.com>
PR libgomp/58756
......
......@@ -91,8 +91,8 @@ entry e5 (is_f5)
l = .false.
!$omp parallel firstprivate (f5, e5) shared (is_f5) num_threads (2) &
!$omp reduction (.or.:l)
l = .not. is_f5 .and. e5 .ne. 8
l = l .or. (is_f5 .and. f5 .ne. 6.5)
if (.not. is_f5) l = l .or. e5 .ne. 8
if (is_f5) l = l .or. f5 .ne. 6.5
if (omp_get_thread_num () .eq. 0) e5 = 8
if (omp_get_thread_num () .eq. 1) e5 = 14
f5 = e5 - 4.5
......
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