[flang-commits] [flang] [mlir] [flang][openmp] Changes for invoking scan Op (PR #123254)
Anchu Rajendran S via flang-commits
flang-commits at lists.llvm.org
Thu Jan 23 13:28:11 PST 2025
================
@@ -0,0 +1,34 @@
+!RUN: %flang_fc1 -emit-hlfir -fopenmp %s -o - | FileCheck %s
+
+subroutine inclusive_scan
+ implicit none
+ integer, parameter :: n = 100
+ integer a(n), b(n)
+ integer x, k
+
+ !CHECK: omp.wsloop reduction(mod: inscan, {{.*}}) {
----------------
anchuraj wrote:
Updated to use the autogenerated checks so these gets checked
https://github.com/llvm/llvm-project/pull/123254
More information about the flang-commits
mailing list