summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMitch Phillips <31459023+hctim@users.noreply.github.com>2022-01-21 16:22:29 -0800
committerMitch Phillips <31459023+hctim@users.noreply.github.com>2022-01-21 16:22:29 -0800
commit1613f8b8d7d5fc155e1a0ce2f88c4be6b115936e (patch)
tree90a6fc729c701d2e807902e6959d09a095b4a97c
parent10d0d8c0c1db57b7ff465df7ced78a42a20d592d (diff)
NFC (build fix): Add header for llvm::errs().
Looks like e9211e039377 unfortunately broke the sanitizer build bots, because those bots compile the symbolizer with DLLVM_ENABLE_THREADS=Off. Likely, before the patch, this header was transitively included.
-rw-r--r--llvm/lib/Support/ThreadPool.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Support/ThreadPool.cpp b/llvm/lib/Support/ThreadPool.cpp
index bf2584950c4a..6eec368e626f 100644
--- a/llvm/lib/Support/ThreadPool.cpp
+++ b/llvm/lib/Support/ThreadPool.cpp
@@ -14,6 +14,7 @@
#include "llvm/Config/llvm-config.h"
#include "llvm/Support/Threading.h"
+#include "llvm/Support/raw_ostream.h"
using namespace llvm;