[flang-commits] [flang] 23d0c73 - [flang] Fix missing includes in lib/Lower/Support/Utils.cpp (#143196)

via flang-commits flang-commits at lists.llvm.org
Sat Jun 7 06:39:46 PDT 2025


Author: Michał Górny
Date: 2025-06-07T15:39:42+02:00
New Revision: 23d0c7348aacdfcb145a69e533a14131bae830cc

URL: https://github.com/llvm/llvm-project/commit/23d0c7348aacdfcb145a69e533a14131bae830cc
DIFF: https://github.com/llvm/llvm-project/commit/23d0c7348aacdfcb145a69e533a14131bae830cc.diff

LOG: [flang] Fix missing includes in lib/Lower/Support/Utils.cpp (#143196)

Fixes the build failure due to missing includes introduced in
f8dcb059ae06376b0991936026d5befb3d7b109b.

Added: 
    

Modified: 
    flang/lib/Lower/Support/Utils.cpp

Removed: 
    


################################################################################
diff  --git a/flang/lib/Lower/Support/Utils.cpp b/flang/lib/Lower/Support/Utils.cpp
index 674f9911b1276..c65f51ce6cacd 100644
--- a/flang/lib/Lower/Support/Utils.cpp
+++ b/flang/lib/Lower/Support/Utils.cpp
@@ -13,9 +13,15 @@
 #include "flang/Lower/Support/Utils.h"
 
 #include "flang/Common/indirection.h"
+#include "flang/Lower/AbstractConverter.h"
+#include "flang/Lower/ConvertVariable.h"
 #include "flang/Lower/IterationSpace.h"
 #include "flang/Lower/Support/PrivateReductionUtils.h"
+#include "flang/Optimizer/Builder/HLFIRTools.h"
+#include "flang/Optimizer/Builder/Todo.h"
+#include "flang/Optimizer/HLFIR/HLFIRDialect.h"
 #include "flang/Semantics/tools.h"
+#include "mlir/Dialect/OpenMP/OpenMPDialect.h"
 #include <cstdint>
 #include <optional>
 #include <type_traits>


        


More information about the flang-commits mailing list