diff options
Diffstat (limited to 'include/llvm')
-rw-r--r-- | include/llvm/Support/BlockFrequency.h | 2 | ||||
-rw-r--r-- | include/llvm/Support/Capacity.h | 2 | ||||
-rw-r--r-- | include/llvm/Support/DynamicLibrary.h | 3 |
3 files changed, 7 insertions, 0 deletions
diff --git a/include/llvm/Support/BlockFrequency.h b/include/llvm/Support/BlockFrequency.h index 554b784569..839cf93712 100644 --- a/include/llvm/Support/BlockFrequency.h +++ b/include/llvm/Support/BlockFrequency.h @@ -14,6 +14,8 @@ #ifndef LLVM_SUPPORT_BLOCKFREQUENCY_H #define LLVM_SUPPORT_BLOCKFREQUENCY_H +#include "llvm/Support/DataTypes.h" + namespace llvm { class raw_ostream; diff --git a/include/llvm/Support/Capacity.h b/include/llvm/Support/Capacity.h index d8cda43b35..7460f9825b 100644 --- a/include/llvm/Support/Capacity.h +++ b/include/llvm/Support/Capacity.h @@ -15,6 +15,8 @@ #ifndef LLVM_SUPPORT_CAPACITY_H #define LLVM_SUPPORT_CAPACITY_H +#include <cstddef> + namespace llvm { template <typename T> diff --git a/include/llvm/Support/DynamicLibrary.h b/include/llvm/Support/DynamicLibrary.h index 288936bc0b..0f59cbf239 100644 --- a/include/llvm/Support/DynamicLibrary.h +++ b/include/llvm/Support/DynamicLibrary.h @@ -17,6 +17,9 @@ #include <string> namespace llvm { + +class StringRef; + namespace sys { /// This class provides a portable interface to dynamic libraries which also |