[flang-commits] [flang] 88283a6 - [Flang][OpenMP] Fix MSVC missing include caused by #147442
via flang-commits
flang-commits at lists.llvm.org
Tue Aug 5 08:14:18 PDT 2025
Author: agozillon
Date: 2025-08-05T10:13:32-05:00
New Revision: 88283a6e4601381d192ab1e3389b11cd23a83e69
URL: https://github.com/llvm/llvm-project/commit/88283a6e4601381d192ab1e3389b11cd23a83e69
DIFF: https://github.com/llvm/llvm-project/commit/88283a6e4601381d192ab1e3389b11cd23a83e69.diff
LOG: [Flang][OpenMP] Fix MSVC missing include caused by #147442
Windows/MSVC build bots are having issues with a missing header where
linux is not. So, attempt to fix by adding missing header explicitly to file.
Added:
Modified:
flang/lib/Lower/OpenMP/DataSharingProcessor.cpp
Removed:
################################################################################
diff --git a/flang/lib/Lower/OpenMP/DataSharingProcessor.cpp b/flang/lib/Lower/OpenMP/DataSharingProcessor.cpp
index b28450ca7fcb8..eee208a16648d 100644
--- a/flang/lib/Lower/OpenMP/DataSharingProcessor.cpp
+++ b/flang/lib/Lower/OpenMP/DataSharingProcessor.cpp
@@ -26,6 +26,7 @@
#include "flang/Optimizer/HLFIR/HLFIROps.h"
#include "flang/Parser/openmp-utils.h"
#include "flang/Semantics/attr.h"
+#include "flang/Semantics/openmp-directive-sets.h"
#include "flang/Semantics/tools.h"
#include "llvm/ADT/Sequence.h"
#include "llvm/ADT/SmallSet.h"
More information about the flang-commits
mailing list