Missing includes.

llvm-svn: 281450
This commit is contained in:
Vassil Vassilev 2016-09-14 08:55:18 +00:00
parent e05336ffa1
commit 2ec8b1506a
5 changed files with 5 additions and 1 deletions

View File

@ -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"

View File

@ -22,6 +22,7 @@
#define DEBUG_TYPE "cache-pruning"
#include <set>
#include <system_error>
using namespace llvm;

View File

@ -9,6 +9,7 @@
#include "llvm/ADT/DeltaAlgorithm.h"
#include <algorithm>
#include <iterator>
#include <set>
using namespace llvm;
DeltaAlgorithm::~DeltaAlgorithm() {

View File

@ -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;

View File

@ -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