There are a few well-meaning warnings for some cases of the FPTR= argument to C_F_POINTER() that can be false positives, since the restrictions in the standard are dependent on the source of the CPTR= argument. Further, there is no way to alter a program to avoid these warnings, so one cannot compile a correct and conforming program with -pedantic -Werror. Disable these warnings. Fixes https://github.com/llvm/llvm-project/issues/167470.
70 lines
3.5 KiB
Fortran
70 lines
3.5 KiB
Fortran
! RUN: %python %S/test_errors.py %s %flang_fc1 -pedantic
|
|
! Enforce 18.2.3.3
|
|
|
|
program test
|
|
use iso_c_binding, only: c_ptr, c_f_pointer
|
|
type(c_ptr) :: scalarC, arrayC(1)
|
|
type :: with_pointer
|
|
integer, pointer :: p
|
|
end type
|
|
type(with_pointer) :: coindexed[*]
|
|
integer, pointer :: scalarIntF, arrayIntF(:), multiDimIntF(:,:)
|
|
character(len=:), pointer :: charDeferredF
|
|
integer :: j
|
|
integer, dimension(2, 2) :: rankTwoArray
|
|
class(*), pointer :: unlimited
|
|
type :: notBindCType
|
|
integer :: n
|
|
end type
|
|
type(notBindCType), pointer :: notBindC
|
|
character(2), pointer :: c2ptr
|
|
character(1,4), pointer :: unicodePtr
|
|
rankTwoArray = reshape([1, 2, 3, 4], shape(rankTwoArray))
|
|
call c_f_pointer(scalarC, scalarIntF) ! ok
|
|
call c_f_pointer(scalarC, arrayIntF, [1_8]) ! ok
|
|
call c_f_pointer(shape=[1_8], cptr=scalarC, fptr=arrayIntF) ! ok
|
|
call c_f_pointer(scalarC, shape=[1_8], fptr=arrayIntF) ! ok
|
|
!ERROR: A positional actual argument may not appear after any keyword arguments
|
|
call c_f_pointer(scalarC, fptr=arrayIntF, [1_8])
|
|
!ERROR: CPTR= argument to C_F_POINTER() must be a C_PTR
|
|
call c_f_pointer(j, scalarIntF)
|
|
!ERROR: Rank of dummy argument is 0, but actual argument has rank 1
|
|
call c_f_pointer(arrayC, scalarIntF)
|
|
!ERROR: SHAPE= argument to C_F_POINTER() must appear when FPTR= is an array
|
|
call c_f_pointer(scalarC, arrayIntF)
|
|
!ERROR: SHAPE= argument to C_F_POINTER() may not appear when FPTR= is scalar
|
|
call c_f_pointer(scalarC, scalarIntF, [1_8])
|
|
!ERROR: FPTR= argument to C_F_POINTER() may not have a deferred type parameter
|
|
call c_f_pointer(scalarC, charDeferredF)
|
|
!ERROR: cosubscript 0 is less than lower cobound 1 for codimension 1 of array
|
|
!ERROR: FPTR= argument to C_F_POINTER() may not be a coindexed object
|
|
!ERROR: A coindexed object may not be a pointer target
|
|
call c_f_pointer(scalarC, coindexed[0]%p)
|
|
!ERROR: FPTR= argument to C_F_POINTER() must have a type
|
|
call c_f_pointer(scalarC, null())
|
|
!ERROR: SHAPE= argument to C_F_POINTER() must have size equal to the rank of FPTR=
|
|
call c_f_pointer(scalarC, multiDimIntF, shape=[1_8])
|
|
!ERROR: SHAPE= argument to C_F_POINTER() must be a rank-one array.
|
|
call c_f_pointer(scalarC, multiDimIntF, shape=rankTwoArray)
|
|
|
|
!These warnings have been disabled because the C_F_POINTER's restrictions
|
|
!are dependent on the source of the CPTR= argument. Each warning here
|
|
!might be a false positive for a valid program.
|
|
!!WARNING: FPTR= argument to C_F_POINTER() should not be unlimited polymorphic [-Winteroperability]
|
|
call c_f_pointer(scalarC, unlimited)
|
|
!!PORTABILITY: FPTR= argument to C_F_POINTER() should not have a derived type that is not BIND(C) [-Wportability]
|
|
call c_f_pointer(scalarC, notBindC)
|
|
!!WARNING: FPTR= argument to C_F_POINTER() should not have the non-interoperable character length CHARACTER(KIND=1,LEN=2_8) [-Wcharacter-interoperability]
|
|
call c_f_pointer(scalarC, c2ptr)
|
|
!!WARNING: FPTR= argument to C_F_POINTER() should not have the non-interoperable intrinsic type or kind CHARACTER(KIND=4,LEN=1_8) [-Winteroperability]
|
|
call c_f_pointer(scalarC, unicodePtr)
|
|
|
|
!ERROR: SHAPE= argument to C_F_POINTER() may not appear when FPTR= is scalar
|
|
!ERROR: LOWER= argument to C_F_POINTER() may not appear when FPTR= is scalar
|
|
call c_f_pointer(scalarC, scalarIntF, [1_8], [0_8])
|
|
!ERROR: LOWER= argument to C_F_POINTER() must be a rank-one array.
|
|
call c_f_pointer(scalarC, arrayIntF, shape=[1_8], lower=rankTwoArray)
|
|
!ERROR: SHAPE= argument to C_F_POINTER() must appear when FPTR= is an array
|
|
call c_f_pointer(scalarC, arrayIntF, lower=[0])
|
|
end program
|