[flang-commits] [flang] [NFC][Flang][OpenMP] Remove obsolete declare simd lowering TODO test (PR #181756)

via flang-commits flang-commits at lists.llvm.org
Mon Feb 16 15:25:29 PST 2026


https://github.com/chichunchen created https://github.com/llvm/llvm-project/pull/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.

>From b98e46286909bfc771f6059ca99f976d458003d0 Mon Sep 17 00:00:00 2001
From: cchen <chichun.chen at hpe.com>
Date: Mon, 16 Feb 2026 17:19:12 -0600
Subject: [PATCH] [NFC][Flang][OpenMP] Remove obsolete declare simd lowering
 TODO test

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.
---
 flang/test/Lower/OpenMP/Todo/omp-declare-simd.f90 | 11 -----------
 1 file changed, 11 deletions(-)
 delete mode 100644 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