diff options
author | Vassil Vassilev <v.g.vassilev@gmail.com> | 2016-09-14 08:55:18 +0000 |
---|---|---|
committer | Vassil Vassilev <v.g.vassilev@gmail.com> | 2016-09-14 08:55:18 +0000 |
commit | 2ec8b1506ad6953e6388e434d97df8754416320e (patch) | |
tree | 55f58724f9890ad42bd24e387a3b5d7778c6d4a9 /llvm/lib/Support | |
parent | e05336ffa192646ed8814963a4b0a5ec7400172b (diff) | |
download | bcm5719-llvm-2ec8b1506ad6953e6388e434d97df8754416320e.tar.gz bcm5719-llvm-2ec8b1506ad6953e6388e434d97df8754416320e.zip |
Missing includes.
llvm-svn: 281450
Diffstat (limited to 'llvm/lib/Support')
-rw-r--r-- | llvm/lib/Support/APInt.cpp | 2 | ||||
-rw-r--r-- | llvm/lib/Support/CachePruning.cpp | 1 | ||||
-rw-r--r-- | llvm/lib/Support/DeltaAlgorithm.cpp | 1 | ||||
-rw-r--r-- | llvm/lib/Support/Error.cpp | 1 | ||||
-rw-r--r-- | llvm/lib/Support/LockFileManager.cpp | 1 |
5 files changed, 5 insertions, 1 deletions
diff --git a/llvm/lib/Support/APInt.cpp b/llvm/lib/Support/APInt.cpp index 318ce10ceaf..0c0b498f137 100644 --- a/llvm/lib/Support/APInt.cpp +++ b/llvm/lib/Support/APInt.cpp @@ -22,10 +22,10 @@ #include "llvm/Support/ErrorHandling.h" #include "llvm/Support/MathExtras.h" #include "llvm/Support/raw_ostream.h" +#include <climits> #include <cmath> #include <cstdlib> #include <cstring> -#include <limits> using namespace llvm; #define DEBUG_TYPE "apint" diff --git a/llvm/lib/Support/CachePruning.cpp b/llvm/lib/Support/CachePruning.cpp index bd42befce38..6184ba2ea33 100644 --- a/llvm/lib/Support/CachePruning.cpp +++ b/llvm/lib/Support/CachePruning.cpp @@ -22,6 +22,7 @@ #define DEBUG_TYPE "cache-pruning" #include <set> +#include <system_error> using namespace llvm; diff --git a/llvm/lib/Support/DeltaAlgorithm.cpp b/llvm/lib/Support/DeltaAlgorithm.cpp index 9e52874de83..50ea4e9ce0c 100644 --- a/llvm/lib/Support/DeltaAlgorithm.cpp +++ b/llvm/lib/Support/DeltaAlgorithm.cpp @@ -9,6 +9,7 @@ #include "llvm/ADT/DeltaAlgorithm.h" #include <algorithm> #include <iterator> +#include <set> using namespace llvm; DeltaAlgorithm::~DeltaAlgorithm() { diff --git a/llvm/lib/Support/Error.cpp b/llvm/lib/Support/Error.cpp index 6b22691eb1a..28d9127777f 100644 --- a/llvm/lib/Support/Error.cpp +++ b/llvm/lib/Support/Error.cpp @@ -11,6 +11,7 @@ #include "llvm/ADT/Twine.h" #include "llvm/Support/ErrorHandling.h" #include "llvm/Support/ManagedStatic.h" +#include <system_error> using namespace llvm; diff --git a/llvm/lib/Support/LockFileManager.cpp b/llvm/lib/Support/LockFileManager.cpp index 357d0e37856..444aaa37c8c 100644 --- a/llvm/lib/Support/LockFileManager.cpp +++ b/llvm/lib/Support/LockFileManager.cpp @@ -21,6 +21,7 @@ #include <ctime> #include <memory> #include <tuple> +#include <system_error> #include <sys/stat.h> #include <sys/types.h> #if LLVM_ON_WIN32 |