[flang-commits] [flang] 8a49130 - [NFC][Flang][OpenMP] Remove obsolete declare simd lowering TODO test (#181756)
via flang-commits
flang-commits at lists.llvm.org
Tue Feb 17 09:12:35 PST 2026
Author: Chi-Chun, Chen
Date: 2026-02-17T11:12:29-06:00
New Revision: 8a491301eea5ec217503a6df9445efc183357150
URL: https://github.com/llvm/llvm-project/commit/8a491301eea5ec217503a6df9445efc183357150
DIFF: https://github.com/llvm/llvm-project/commit/8a491301eea5ec217503a6df9445efc183357150.diff
LOG: [NFC][Flang][OpenMP] Remove obsolete declare simd lowering TODO test (#181756)
The TODO test for Flang OpenMP `declare simd` lowering is no longer
needed, as the lowering was implemented in
https://github.com/llvm/llvm-project/pull/175604.
Added:
Modified:
Removed:
flang/test/Lower/OpenMP/Todo/omp-declare-simd.f90
################################################################################
diff --git a/flang/test/Lower/OpenMP/Todo/omp-declare-simd.f90 b/flang/test/Lower/OpenMP/Todo/omp-declare-simd.f90
deleted file mode 100644
index a63bfb284642c..0000000000000
--- a/flang/test/Lower/OpenMP/Todo/omp-declare-simd.f90
+++ /dev/null
@@ -1,11 +0,0 @@
-! This test checks lowering of OpenMP declare simd Directive.
-
-// RUN: not %flang_fc1 -emit-fir -fopenmp %s 2>&1 | FileCheck %s
-
-subroutine sub(x, y)
- real, intent(inout) :: x, y
-
- // CHECK: not yet implemented: OpenMPDeclareSimdConstruct
- !$omp declare simd(sub) aligned(x)
- x = 3.14 + y
-end
More information about the flang-commits
mailing list