selected_int_kind.f90 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. ! Copyright (C) 2003-2022 Free Software Foundation, Inc.
  2. ! Contributed by Kejia Zhao <kejia_zh@yahoo.com.cn>
  3. !
  4. !This file is part of the GNU Fortran 95 runtime library (libgfortran).
  5. !
  6. !Libgfortran is free software; you can redistribute it and/or
  7. !modify it under the terms of the GNU General Public
  8. !License as published by the Free Software Foundation; either
  9. !version 3 of the License, or (at your option) any later version.
  10. !
  11. !Libgfortran is distributed in the hope that it will be useful,
  12. !but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. !MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. !GNU General Public License for more details.
  15. !
  16. !Under Section 7 of GPL version 3, you are granted additional
  17. !permissions described in the GCC Runtime Library Exception, version
  18. !3.1, as published by the Free Software Foundation.
  19. !
  20. !You should have received a copy of the GNU General Public License and
  21. !a copy of the GCC Runtime Library Exception along with this program;
  22. !see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
  23. !<http://www.gnu.org/licenses/>.
  24. function _gfortran_selected_int_kind (r)
  25. implicit none
  26. integer, intent (in) :: r
  27. integer :: _gfortran_selected_int_kind
  28. integer :: i
  29. ! Integer kind_range table
  30. type :: int_info
  31. integer :: kind
  32. integer :: range
  33. end type int_info
  34. include "selected_int_kind.inc"
  35. do i = 1, c
  36. if (r <= int_infos (i) % range) then
  37. _gfortran_selected_int_kind = int_infos (i) % kind
  38. return
  39. end if
  40. end do
  41. _gfortran_selected_int_kind = -1
  42. return
  43. end function