Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[F03] bogus error: Could not resolve generic type bound procedure #533 #849

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Updated with correct license
Change-Id: Icc4334dcb22ca0e46b6ece3c651652729505e024
  • Loading branch information
kiranktp committed Jan 8, 2020
commit 17c072e1a8440e72c03baa72f3bc3e9ae4eb7c1c
6 changes: 4 additions & 2 deletions test/f90_correct/inc/tbp.mk
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
# Copyright (c) 2019, Advanced Micro Devices, Inc. All rights reserved.
#
# Date of Modification: December 2019
# Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
# See https://llvm.org/LICENSE.txt for license information.
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
#


########## Make rule to test type-bound procedures ########

fcheck.o check_mod.mod: $(SRC)/check_mod.f90
Expand Down
6 changes: 4 additions & 2 deletions test/f90_correct/lit/tbp.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
# Copyright (c) 2019, Advanced Micro Devices, Inc. All rights reserved.
#
# Date of Modification: December 2019
# Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
# See https://llvm.org/LICENSE.txt for license information.
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
#


# RUN: KEEP_FILES=%keep FLAGS=%flags TEST_SRC=%s MAKE_FILE_DIR=%S/.. bash %S/runmake | tee %t
# RUN: cat %t | FileCheck %S/runmake
7 changes: 5 additions & 2 deletions test/f90_correct/src/tbp.f90
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
! Copyright (c) 2019, Advanced Micro Devices, Inc. All rights reserved.
!
! Date of Modification: December 2019
! Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
! See https://llvm.org/LICENSE.txt for license information.
! SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
!


module test_m
implicit none
Expand Down