From 874305c738496f30728aeb0b5252b4cf91e04357 Mon Sep 17 00:00:00 2001 From: River Riddle Date: Tue, 16 Nov 2021 19:48:26 +0000 Subject: [PATCH] [mlir] Fix clang5 build after D113641 --- mlir/include/mlir/Support/LLVM.h | 1 + 1 file changed, 1 insertion(+) diff --git a/mlir/include/mlir/Support/LLVM.h b/mlir/include/mlir/Support/LLVM.h index 885521037f21..b8f6bbeba94d 100644 --- a/mlir/include/mlir/Support/LLVM.h +++ b/mlir/include/mlir/Support/LLVM.h @@ -27,6 +27,7 @@ // Workaround for clang-5 (PR41549) #if defined(__clang_major__) #if __clang_major__ <= 5 +#include "llvm/ADT/DenseMapInfo.h" #include "llvm/ADT/SmallVector.h" #endif #endif