mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-17 03:46:46 +00:00

Currently the use of REAL/COMPLEX(KIND=10) as a type or literal constant suffix elicits an optional warning message only. This leads to compiler internal errors during lowering when these types appear in code being compiled to non-x86_64 targets. For better error messaging, make the use of these types a hard error in semantics instead when they are not supported by the target architecture.
29 lines
879 B
Fortran
29 lines
879 B
Fortran
! RUN: %python %S/test_errors.py %s %flang_fc1
|
|
module m
|
|
implicit none
|
|
real, parameter :: a = 8.0
|
|
!ERROR: Must have INTEGER type, but is REAL(4)
|
|
integer :: aa = 2_a
|
|
integer :: b = 8
|
|
! C713 A scalar-int-constant-name shall be a named constant of type integer.
|
|
!ERROR: Must be a constant value
|
|
integer :: bb = 2_b
|
|
!TODO: should get error -- not scalar
|
|
!integer, parameter :: c(10) = 8
|
|
!integer :: cc = 2_c
|
|
integer, parameter :: d = 47
|
|
!ERROR: INTEGER(KIND=47) is not a supported type
|
|
integer :: dd = 2_d
|
|
!ERROR: Parameter 'e' not found
|
|
integer :: ee = 2_e
|
|
!ERROR: Missing initialization for parameter 'f'
|
|
integer, parameter :: f
|
|
integer :: ff = 2_f
|
|
!ERROR: REAL(KIND=23) is not a supported type
|
|
real(d/2) :: g
|
|
!ERROR: REAL(KIND=47) is not a supported type
|
|
real*47 :: h
|
|
!ERROR: COMPLEX*47 is not a supported type
|
|
complex*47 :: i
|
|
end
|