[Mlir-commits] [mlir] e59f76e - Apply clang-tidy fixes for misc-include-cleaner in mlir-cat.cpp (NFC)

Mehdi Amini llvmlistbot at llvm.org
Fri Oct 20 00:58:43 PDT 2023


Author: Mehdi Amini
Date: 2023-10-20T00:58:27-07:00
New Revision: e59f76e9f57696c2f3c816947314be097d1c2942

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

LOG: Apply clang-tidy fixes for misc-include-cleaner in mlir-cat.cpp (NFC)

Added: 
    

Modified: 
    mlir/examples/minimal-opt/mlir-cat.cpp

Removed: 
    


################################################################################
diff  --git a/mlir/examples/minimal-opt/mlir-cat.cpp b/mlir/examples/minimal-opt/mlir-cat.cpp
index 518654c0ab1a058..2bc89b807aa4b6b 100644
--- a/mlir/examples/minimal-opt/mlir-cat.cpp
+++ b/mlir/examples/minimal-opt/mlir-cat.cpp
@@ -7,14 +7,17 @@
 //===----------------------------------------------------------------------===//
 
 #include "mlir/IR/MLIRContext.h"
+#include "mlir/IR/Operation.h"
+#include "mlir/IR/OwningOpRef.h"
 #include "mlir/Parser/Parser.h"
 #include "mlir/Support/FileUtilities.h"
 #include "mlir/Support/LLVM.h"
-#include "mlir/Support/LogicalResult.h"
-#include "llvm/Support/MemoryBuffer.h"
 #include "llvm/Support/SourceMgr.h"
 #include "llvm/Support/ToolOutputFile.h"
 #include "llvm/Support/raw_ostream.h"
+#include <cstdlib>
+#include <string>
+#include <utility>
 
 using namespace mlir;
 


        


More information about the Mlir-commits mailing list