re PR libgomp/36471 (omp_get_ancestor_thread_num_8 has no implicit type.)

PR libgomp/36471
	* omp_lib.f90.in (omp_get_ancestor_thread_num_8,
	omp_get_team_size_8): Fix pastos.

From-SVN: r136654
This commit is contained in:
Jakub Jelinek 2008-06-11 09:06:14 +02:00 committed by Jakub Jelinek
parent 60c9cf8da6
commit 01501fc82c
2 changed files with 6 additions and 2 deletions

View File

@ -1,5 +1,9 @@
2008-06-11 Jakub Jelinek <jakub@redhat.com>
PR libgomp/36471
* omp_lib.f90.in (omp_get_ancestor_thread_num_8,
omp_get_team_size_8): Fix pastos.
PR libgomp/36469
* configure.ac: Add AC_CHECK_FUNCS (strtoull).
* configure: Regenerated.

View File

@ -268,7 +268,7 @@
function omp_get_ancestor_thread_num_8 (level)
use omp_lib_kinds
integer (8), intent (in) :: level
integer (omp_integer_kind) :: omp_get_ancestor_thread_num
integer (omp_integer_kind) :: omp_get_ancestor_thread_num_8
end function omp_get_ancestor_thread_num_8
end interface
@ -281,7 +281,7 @@
function omp_get_team_size_8 (level)
use omp_lib_kinds
integer (8), intent (in) :: level
integer (omp_integer_kind) :: omp_get_team_size
integer (omp_integer_kind) :: omp_get_team_size_8
end function omp_get_team_size_8
end interface