2
0
mirror of git://gcc.gnu.org/git/gcc.git synced 2025-03-21 23:41:13 +08:00

Add check_effective_target_fortran_integer_16.

From-SVN: r135346
This commit is contained in:
Sa Liu 2008-05-15 12:57:41 +00:00
parent 7ba20e60eb
commit c129abb407

@ -751,6 +751,18 @@ proc check_effective_target_fortran_large_int { } {
}]
}
# Return 1 if the target supports Fortran integer(16), 0 otherwise.
#
# When the target name changes, replace the cached result.
proc check_effective_target_fortran_integer_16 { } {
return [check_no_compiler_messages fortran_integer_16 executable {
! Fortran
integer(16) :: i
end
}]
}
# Return 1 if we can statically link libgfortran, 0 otherwise.
#
# When the target name changes, replace the cached result.