From cb007c863c762b0996dfbd85f3636e8dee147cee Mon Sep 17 00:00:00 2001 From: Mehdi Amini Date: Thu, 1 Aug 2019 16:38:26 -0700 Subject: [PATCH] Add missing include to DenseMap in MLIRContext.cpp This is fixing the build of MLIR on MacOS when built within TensorFlow PiperOrigin-RevId: 261223250 --- third_party/mlir/lib/IR/MLIRContext.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/third_party/mlir/lib/IR/MLIRContext.cpp b/third_party/mlir/lib/IR/MLIRContext.cpp index a0b2e1ed178..f459c81f233 100644 --- a/third_party/mlir/lib/IR/MLIRContext.cpp +++ b/third_party/mlir/lib/IR/MLIRContext.cpp @@ -34,6 +34,7 @@ #include "mlir/IR/Module.h" #include "mlir/IR/Types.h" #include "mlir/Support/STLExtras.h" +#include "llvm/ADT/DenseMap.h" #include "llvm/ADT/DenseSet.h" #include "llvm/ADT/SetVector.h" #include "llvm/ADT/StringMap.h"