From c918c1a91a03f612c1b1e81b82460fbf80fc592a Mon Sep 17 00:00:00 2001 From: Puyan Lotfi Date: Fri, 26 Jun 2020 16:30:25 -0700 Subject: [PATCH] [NFCi] Fixing build failures on Windows due to std::tie used w/o proper include. From https://reviews.llvm.org/D81236 / https://github.com/llvm/llvm-project/commit/55fe7b79bb7fab49af3720840224c0720bdb03c6 std::tie is used without including . This patch includes so that some downstream Windows bots succesfully build. --- llvm/include/llvm/PassAnalysisSupport.h | 1 + 1 file changed, 1 insertion(+) diff --git a/llvm/include/llvm/PassAnalysisSupport.h b/llvm/include/llvm/PassAnalysisSupport.h index d85a82e..84df171 100644 --- a/llvm/include/llvm/PassAnalysisSupport.h +++ b/llvm/include/llvm/PassAnalysisSupport.h @@ -24,6 +24,7 @@ #include "llvm/ADT/SmallVector.h" #include +#include #include #include -- 2.7.4