diff options
author | Arthur Eubanks <aeubanks@google.com> | 2022-06-21 13:26:40 -0700 |
---|---|---|
committer | Arthur Eubanks <aeubanks@google.com> | 2022-06-21 13:27:55 -0700 |
commit | c80b88ee29f34078d2149de94e27600093e6c7c0 (patch) | |
tree | a2acf3f0a79bd1e3d039b481cf711d739002e020 /polly | |
parent | 8cecb6be56d019eb52c30d19e95a300e3e56cc13 (diff) | |
download | llvm-c80b88ee29f34078d2149de94e27600093e6c7c0.zip llvm-c80b88ee29f34078d2149de94e27600093e6c7c0.tar.gz llvm-c80b88ee29f34078d2149de94e27600093e6c7c0.tar.bz2 |
[polly] #include <algorithm>
For the usage of std::max in the header.
Speculative fix for
https://ci.chromium.org/ui/p/fuchsia/builders/toolchain.ci/clang-windows-x64/b8810806780048763729/overview
reported in https://reviews.llvm.org/D125263.
Diffstat (limited to 'polly')
-rw-r--r-- | polly/include/polly/Support/ISLTools.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/polly/include/polly/Support/ISLTools.h b/polly/include/polly/Support/ISLTools.h index 0aa7664..f7bc294 100644 --- a/polly/include/polly/Support/ISLTools.h +++ b/polly/include/polly/Support/ISLTools.h @@ -17,6 +17,7 @@ #include "llvm/ADT/Sequence.h" #include "llvm/ADT/iterator.h" #include "isl/isl-noexceptions.h" +#include <algorithm> #include <cassert> /// In debug builds assert that the @p Size is valid, in non-debug builds |