2021-04-12 20:27:49 +08:00
! RUN: %S/test_errors.sh %s %t %flang_fc1
2020-03-06 09:55:51 +08:00
! 9.4.5
subroutine s1
type :: t ( k , l )
integer , kind :: k
integer , len :: l
end type
type ( t ( 1 , 2 ) ) :: x
!ERROR: Assignment to constant 'x%k' is not allowed
x % k = 4
2021-04-07 00:25:35 +08:00
!ERROR: Assignment to constant 'x%l' is not allowed
2020-03-06 09:55:51 +08:00
x % l = 3
end
! C901
subroutine s2 ( x )
2020-03-20 07:31:10 +08:00
!ERROR: A dummy argument may not also be a named constant
2020-03-06 09:55:51 +08:00
real , parameter :: x = 0.0
real , parameter :: a ( * ) = [ 1 , 2 , 3 ]
character , parameter :: c ( 2 ) = "ab"
integer :: i
!ERROR: Assignment to constant 'x' is not allowed
x = 2.0
i = 2
!ERROR: Left-hand side of assignment is not modifiable
a ( i ) = 3.0
!ERROR: Left-hand side of assignment is not modifiable
a ( i : i + 1 ) = [ 4 , 5 ]
!ERROR: Left-hand side of assignment is not modifiable
c ( i : 2 ) = "cd"
end
! C901
subroutine s3
type :: t
integer :: a ( 2 )
integer :: b
end type
type ( t ) :: x
type ( t ) , parameter :: y = t ( [ 1 , 2 ] , 3 )
integer :: i = 1
x % a ( i ) = 1
!ERROR: Left-hand side of assignment is not modifiable
y % a ( i ) = 2
x % b = 4
Rework DATA statement semantics to use typed expressions
Summary:
Updates recent work on DATA statement semantic checking in
flang/lib/Semantics/check-data.{h,cpp} to use the compiler's
internal representation for typed expressions rather than working
on the raw parse tree. Saves the analyzed expressions for DATA
statement values as parse tree decorations because they'll soon be
needed in lowering. Corrects wording of some error messages.
Fixes a bug in constant expression checking: structure constructors
are not constant expressions if they set an allocatable component
to anything other than NULL.
Includes infrastructure changes to make this work, some renaming
to reflect the fact that the implied DO loop indices tracked by
expression analysis are not (just) from array constructors, remove
some dead code, and improve some comments.
Reviewers: tskeith, sscalpone, jdoerfert, DavidTruby, anchu-rajendran, schweitz
Reviewed By: tskeith, anchu-rajendran, schweitz
Subscribers: llvm-commits, flang-commits
Tags: #flang, #llvm
Differential Revision: https://reviews.llvm.org/D78834
2020-04-25 04:54:11 +08:00
!ERROR: Assignment to constant 'y%b' is not allowed
2020-03-06 09:55:51 +08:00
y % b = 5
end
! C844
subroutine s4
type :: t
integer :: a ( 2 )
end type
contains
subroutine s ( x , c )
type ( t ) , intent ( in ) :: x
character ( 10 ) , intent ( in ) :: c
type ( t ) :: y
!ERROR: Left-hand side of assignment is not modifiable
x = y
!ERROR: Left-hand side of assignment is not modifiable
x % a ( 1 ) = 2
!ERROR: Left-hand side of assignment is not modifiable
c ( 2 : 3 ) = "ab"
end
end
! 8.5.15(2)
module m5
real :: x
real , protected :: y
real , private :: z
type :: t
real :: a
end type
type ( t ) , protected :: b
end
subroutine s5 ( )
use m5
implicit none
x = 1.0
!ERROR: Left-hand side of assignment is not modifiable
y = 2.0
!ERROR: No explicit type declared for 'z'
z = 3.0
!ERROR: Left-hand side of assignment is not modifiable
b % a = 1.0
end
subroutine s6 ( x )
integer :: x ( * )
x ( 1 : 3 ) = [ 1 , 2 , 3 ]
x ( : 3 ) = [ 1 , 2 , 3 ]
!ERROR: Assumed-size array 'x' must have explicit final subscript upper bound value
x ( : ) = [ 1 , 2 , 3 ]
2020-10-02 03:08:04 +08:00
!ERROR: Whole assumed-size array 'x' may not appear here without subscripts
2020-03-06 09:55:51 +08:00
x = [ 1 , 2 , 3 ]
end
module m7
type :: t
integer :: i
end type
contains
subroutine s7 ( x )
type ( t ) :: x ( * )
x ( : 3 ) % i = [ 1 , 2 , 3 ]
2020-10-02 03:08:04 +08:00
!ERROR: Whole assumed-size array 'x' may not appear here without subscripts
2020-03-06 09:55:51 +08:00
x % i = [ 1 , 2 , 3 ]
end
end
2020-03-11 07:32:58 +08:00
subroutine s7
integer :: a ( 10 ) , v ( 10 )
a ( v ( : ) ) = 1 ! vector subscript is ok
end
2020-08-07 11:33:59 +08:00
subroutine s8
!ERROR: Assignment to subprogram 's8' is not allowed
s8 = 1.0
end
real function f9 ( ) result ( r )
!ERROR: Assignment to subprogram 'f9' is not allowed
f9 = 1.0
end
2020-08-11 02:44:04 +08:00
2021-02-19 03:55:31 +08:00
!ERROR: No explicit type declared for dummy argument 'n'
2020-08-11 02:44:04 +08:00
subroutine s10 ( a , n )
implicit none
real a ( n )
a ( 1 : n ) = 0.0 ! should not get a second error here
end
2020-08-19 01:47:52 +08:00
subroutine s11
intrinsic :: sin
real :: a
!ERROR: Function call must have argument list
a = sin
!ERROR: Subroutine name is not allowed here
a = s11
end
2021-04-21 01:11:03 +08:00
subroutine s12 ( )
type dType ( l1 , k1 , l2 , k2 )
integer , len :: l1
integer , kind :: k1
integer , len :: l2
integer , kind :: k2
end type
contains
subroutine sub ( arg1 , arg2 , arg3 )
integer :: arg1
type ( dType ( arg1 , 2 , * , 4 ) ) :: arg2
type ( dType ( * , 2 , arg1 , 4 ) ) :: arg3
type ( dType ( 1 , 2 , 3 , 4 ) ) :: local1
type ( dType ( 1 , 2 , 3 , 4 ) ) :: local2
type ( dType ( 1 , 2 , arg1 , 4 ) ) :: local3
type ( dType ( 9 , 2 , 3 , 4 ) ) :: local4
type ( dType ( 1 , 9 , 3 , 4 ) ) :: local5
arg2 = arg3
arg2 = local1
arg3 = local1
local1 = local2
local2 = local3
!ERROR: No intrinsic or user-defined ASSIGNMENT(=) matches operand types TYPE(dtype(k1=2_4,k2=4_4,l1=1_4,l2=3_4)) and TYPE(dtype(k1=2_4,k2=4_4,l1=9_4,l2=3_4))
local1 = local4 ! mismatched constant KIND type parameter
!ERROR: No intrinsic or user-defined ASSIGNMENT(=) matches operand types TYPE(dtype(k1=2_4,k2=4_4,l1=1_4,l2=3_4)) and TYPE(dtype(k1=9_4,k2=4_4,l1=1_4,l2=3_4))
local1 = local5 ! mismatched constant LEN type parameter
end subroutine sub
end subroutine s12