llvm/flang/test/semantics/modfile16.f90
Tim Keith a1a55f007c [flang] Resolve name in PASS and BIND attributes
These are recognized along with other attributes and saved in
`passName_` and `bindName_`. The functions `SetPassNameOn()` and
`SetBindNameOn()` set them in a symbol if they are present.
They are also written to `.mod` files.

Add `MakePlaceholder()` to make symbols for names that otherwise
wouldn't have one. This allows us to assign a symbol to every name
and report errors for those that don't have one. Make use of this
for PASS names, which don't have explicit symbols.

Change `ObjectEntityDetails` and `ProcEntityDetails` to be sub-classes
of `EntityDetails`. They each contain a superset of the information in
`EntityDetails` so this reduces some duplication.

Original-commit: flang-compiler/f18@404c920840
Reviewed-on: https://github.com/flang-compiler/f18/pull/256
Tree-same-pre-rewrite: false
2019-01-08 12:14:35 -08:00

50 lines
1.4 KiB
Fortran

! Copyright (c) 2019, NVIDIA CORPORATION. All rights reserved.
!
! Licensed under the Apache License, Version 2.0 (the "License");
! you may not use this file except in compliance with the License.
! You may obtain a copy of the License at
!
! http://www.apache.org/licenses/LICENSE-2.0
!
! Unless required by applicable law or agreed to in writing, software
! distributed under the License is distributed on an "AS IS" BASIS,
! WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
! See the License for the specific language governing permissions and
! limitations under the License.
module m
character(2), parameter :: prefix = 'c_'
integer, bind(c, name='c_a') :: a
procedure(sub), bind(c, name=prefix//'b'), pointer :: b
type, bind(c) :: t
real :: c
end type
real :: d
external :: d
bind(c, name='dd') :: d
real :: e
bind(c, name='ee') :: e
external :: e
bind(c, name='ff') :: f
real :: f
external :: f
contains
subroutine sub() bind(c, name='sub')
end
end
!Expect: m.mod
!module m
! character(2_4,1),parameter::prefix=1_"c_"
! integer(4),bind(c, name=1_"c_a")::a
! procedure(sub),bind(c, name=1_"c_b"),pointer::b
! type,bind(c)::t
! real(4)::c
! end type
! procedure(real(4)),bind(c, name=1_"dd")::d
! procedure(real(4)),bind(c, name=1_"ee")::e
! procedure(real(4)),bind(c, name=1_"ff")::f
!contains
! subroutine sub(),bind(c, name=1_"sub")
! end
!end