Files
RedBear-OS/local/recipes/dev/libclc/source/flang/test/Semantics/resolve114.f90
T
vasilito cb424d7448 build: static patch-sanity linter (shift-left the malformed-patch class)
verify-patch-sanity.py validates every active recipe .patch has internally-
consistent hunk line counts — catching the 'malformed patch at line N' failure
at commit/CI/preflight time instead of hours into a cook. This cycle hit that
class three times (qtwaylandscanner, sddm, xwayland), each only discovered when
cookbook tried to apply the patch.

Running it across the repo found 29 latent malformed patches (validated against
GNU patch: e.g. relibc/P3-sysv-ipc reproduces 'malformed patch at line 22').
They were harmless only because they sit in vendored recipes (baked, not re-
applied) — but would fail on any version-bump re-derivation. --fix recounts the
hunk headers (body untouched) and repaired all 29.

Wired into build-preflight.sh (Phase 1.0D) and redbear-ci.yml, with a unit test
(test-patch-sanity.sh). Skips archived/legacy trees and unvalidatable formats
(empty placeholders, bare-@@ git hunks).
2026-08-01 05:13:02 +03:00

101 lines
3.7 KiB
Fortran

! RUN: %python %S/test_errors.py %s %flang_fc1 -pedantic
! Allow the same external or intrinsic procedure to be use-associated
! by multiple paths when they are unambiguous.
module m1
intrinsic :: sin
intrinsic :: iabs
interface
subroutine ext1(a, b)
integer, intent(in) :: a(:)
real, intent(in) :: b(:)
end subroutine
subroutine ext2(a, b)
real, intent(in) :: a(:)
integer, intent(in) :: b(:)
end subroutine
end interface
end module m1
module m2
intrinsic :: sin, tan
intrinsic :: iabs, idim
interface
subroutine ext1(a, b)
integer, intent(in) :: a(:)
real, intent(in) :: b(:)
end subroutine
subroutine ext2(a, b)
real, intent(in) :: a(:)
integer, intent(in) :: b(:)
end subroutine
end interface
end module m2
subroutine s2a
use m1
use m2
!PORTABILITY: Procedure pointer 'p1' should not have an ELEMENTAL intrinsic as its interface [-Wportability]
procedure(sin), pointer :: p1 => sin
!PORTABILITY: Procedure pointer 'p2' should not have an ELEMENTAL intrinsic as its interface [-Wportability]
procedure(iabs), pointer :: p2 => iabs
procedure(ext1), pointer :: p3 => ext1
procedure(ext2), pointer :: p4 => ext2
end subroutine
subroutine s2b
use m1, only: x1 => sin, x2 => iabs, x3 => ext1, x4 => ext2
use m2, only: x1 => sin, x2 => iabs, x3 => ext1, x4 => ext2
use m1, only: iface1 => sin, iface2 => iabs, iface3 => ext1, iface4 => ext2
!PORTABILITY: Procedure pointer 'p1' should not have an ELEMENTAL intrinsic as its interface [-Wportability]
procedure(iface1), pointer :: p1 => x1
!PORTABILITY: Procedure pointer 'p2' should not have an ELEMENTAL intrinsic as its interface [-Wportability]
procedure(iface2), pointer :: p2 => x2
procedure(iface3), pointer :: p3 => x3
procedure(iface4), pointer :: p4 => x4
end subroutine
module m3
use m1
use m2
end module
subroutine s3
use m3
!PORTABILITY: Procedure pointer 'p1' should not have an ELEMENTAL intrinsic as its interface [-Wportability]
procedure(sin), pointer :: p1 => sin
!PORTABILITY: Procedure pointer 'p2' should not have an ELEMENTAL intrinsic as its interface [-Wportability]
procedure(iabs), pointer :: p2 => iabs
procedure(ext1), pointer :: p3 => ext1
procedure(ext2), pointer :: p4 => ext2
end subroutine
module m4
use m1, only: x1 => sin, x2 => iabs, x3 => ext1, x4 => ext2
use m2, only: x1 => sin, x2 => iabs, x3 => ext1, x4 => ext2
end module
subroutine s4
use m4
use m1, only: iface1 => sin, iface2 => iabs, iface3 => ext1, iface4 => ext2
!PORTABILITY: Procedure pointer 'p1' should not have an ELEMENTAL intrinsic as its interface [-Wportability]
procedure(iface1), pointer :: p1 => x1
!PORTABILITY: Procedure pointer 'p2' should not have an ELEMENTAL intrinsic as its interface [-Wportability]
procedure(iface2), pointer :: p2 => x2
procedure(iface3), pointer :: p3 => x3
procedure(iface4), pointer :: p4 => x4
end subroutine
subroutine s5
use m1, only: x1 => sin, x2 => iabs, x3 => ext1, x4 => ext2
use m2, only: x1 => tan, x2 => idim, x3 => ext2, x4 => ext1
use m1, only: iface1 => sin, iface2 => iabs, iface3 => ext1, iface4 => ext2
!PORTABILITY: Procedure pointer 'p1' should not have an ELEMENTAL intrinsic as its interface [-Wportability]
!ERROR: Reference to 'x1' is ambiguous
procedure(iface1), pointer :: p1 => x1
!PORTABILITY: Procedure pointer 'p2' should not have an ELEMENTAL intrinsic as its interface [-Wportability]
!ERROR: Reference to 'x2' is ambiguous
procedure(iface2), pointer :: p2 => x2
!ERROR: Reference to 'x3' is ambiguous
procedure(iface3), pointer :: p3 => x3
!ERROR: Reference to 'x4' is ambiguous
procedure(iface4), pointer :: p4 => x4
end subroutine