[flang-commits] [PATCH] D113084: [flang] Add a semantics test for co_broadcast

Damian Rouson via Phabricator via flang-commits flang-commits at lists.llvm.org
Thu Nov 18 10:05:26 PST 2021


rouson updated this revision to Diff 388250.
rouson added a comment.

Rebased off of main and ensured that the whole file appears in the diff.


CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D113084/new/

https://reviews.llvm.org/D113084

Files:
  flang/test/Semantics/collectives04.f90


Index: flang/test/Semantics/collectives04.f90
===================================================================
--- /dev/null
+++ flang/test/Semantics/collectives04.f90
@@ -0,0 +1,52 @@
+! RUN: %python %S/test_errors.py %s %flang_fc1
+! XFAIL: *
+! Check for semantic errors in co_broadcast() subroutine calls
+! To Do: add co_broadcast to the evaluation stage
+
+module test_co_broadcast
+  implicit none
+
+contains
+
+  subroutine test
+
+    type foo_t
+    end type
+  
+    type(foo_t) foo
+    type(foo_t) bar(1,1)
+    integer i, status
+    real vector(1)
+    real array(1,1,1, 1,1,1, 1,1,1, 1,1,1, 1,1,1)
+    character(len=1) string, message
+  
+    ! correct calls, should produce no errors
+    call co_broadcast(i,   1)
+    call co_broadcast(i,   1,              status)
+    call co_broadcast(i,   1,              stat=status)
+    call co_broadcast(i,   1,                           errmsg=message)
+    call co_broadcast(i,   1,              stat=status, errmsg=message)
+    call co_broadcast(i,   source_image=1, stat=status, errmsg=message)
+    call co_broadcast(a=i, source_image=1, stat=status, errmsg=message)
+
+    call co_broadcast(array,  source_image=1, stat=status, errmsg=message)
+    call co_broadcast(vector, source_image=1, stat=status, errmsg=message)
+    call co_broadcast(string, source_image=1, stat=status, errmsg=message)
+    call co_broadcast(foo,    source_image=1, stat=status, errmsg=message)
+    call co_broadcast(bar,    source_image=1, stat=status, errmsg=message)
+  
+    ! the error is seen as an incorrect type for the stat= argument
+    !ERROR: Actual argument for 'stat=' has bad type 'CHARACTER(KIND=1,LEN=1_8)'
+    call co_broadcast(i, 1, message)
+
+    ! the error is seen as too many arguments to the co_broadcast() call
+    !ERROR: too many actual arguments for intrinsic 'co_broadcast'
+    call co_broadcast(i, source_image=1, stat=status, errmsg=message, 3.4)
+  
+    ! keyword argument with incorrect type
+    !ERROR: unknown keyword argument to intrinsic 'co_broadcast'
+    call co_broadcast(fake=3.4)
+  
+  end subroutine
+
+end module test_co_broadcast


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D113084.388250.patch
Type: text/x-patch
Size: 2135 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/flang-commits/attachments/20211118/4433c8c8/attachment.bin>


More information about the flang-commits mailing list