diff options
author | Richard Trieu <rtrieu@google.com> | 2019-01-11 01:32:35 +0000 |
---|---|---|
committer | Richard Trieu <rtrieu@google.com> | 2019-01-11 01:32:35 +0000 |
commit | f8b8b39c60f8d6558a38806c785f824d1b3174c0 (patch) | |
tree | 15928a9bd485ab4e6c8f51c3156a8abbc2e14eef /clang/lib/CodeGen | |
parent | 80473621294fa8cb0e5639df032397e5bd6537a7 (diff) | |
download | bcm5719-llvm-f8b8b39c60f8d6558a38806c785f824d1b3174c0.tar.gz bcm5719-llvm-f8b8b39c60f8d6558a38806c785f824d1b3174c0.zip |
Fix header issues.
Several headers would fail to compile if other headers were not previously
included. The usual issue is that a class is forward declared, but the
full definition is needed. The requirement for the definition is use of
isa/dyn_cast or calling functions of pointer-packed data types such as
DenseMap or PointerIntPair. Add missing includes to these headers.
SVals.h required an out-of-line method definition in the .cpp file to avoid
circular inclusion of headers with BasicValueFactory.h
llvm-svn: 350913
Diffstat (limited to 'clang/lib/CodeGen')
-rw-r--r-- | clang/lib/CodeGen/CGOpenCLRuntime.h | 1 | ||||
-rw-r--r-- | clang/lib/CodeGen/CGOpenMPRuntime.h | 1 | ||||
-rw-r--r-- | clang/lib/CodeGen/VarBypassDetector.h | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/clang/lib/CodeGen/CGOpenCLRuntime.h b/clang/lib/CodeGen/CGOpenCLRuntime.h index 3da55af065b..750721f1b80 100644 --- a/clang/lib/CodeGen/CGOpenCLRuntime.h +++ b/clang/lib/CodeGen/CGOpenCLRuntime.h @@ -16,6 +16,7 @@ #ifndef LLVM_CLANG_LIB_CODEGEN_CGOPENCLRUNTIME_H #define LLVM_CLANG_LIB_CODEGEN_CGOPENCLRUNTIME_H +#include "clang/AST/Expr.h" #include "clang/AST/Type.h" #include "llvm/ADT/DenseMap.h" #include "llvm/IR/Type.h" diff --git a/clang/lib/CodeGen/CGOpenMPRuntime.h b/clang/lib/CodeGen/CGOpenMPRuntime.h index 933c8af116d..1822a6fd197 100644 --- a/clang/lib/CodeGen/CGOpenMPRuntime.h +++ b/clang/lib/CodeGen/CGOpenMPRuntime.h @@ -15,6 +15,7 @@ #define LLVM_CLANG_LIB_CODEGEN_CGOPENMPRUNTIME_H #include "CGValue.h" +#include "clang/AST/DeclOpenMP.h" #include "clang/AST/Type.h" #include "clang/Basic/OpenMPKinds.h" #include "clang/Basic/SourceLocation.h" diff --git a/clang/lib/CodeGen/VarBypassDetector.h b/clang/lib/CodeGen/VarBypassDetector.h index f50baf4bab9..47fe13cfacd 100644 --- a/clang/lib/CodeGen/VarBypassDetector.h +++ b/clang/lib/CodeGen/VarBypassDetector.h @@ -15,6 +15,7 @@ #ifndef LLVM_CLANG_LIB_CODEGEN_VARBYPASSDETECTOR_H #define LLVM_CLANG_LIB_CODEGEN_VARBYPASSDETECTOR_H +#include "clang/AST/Decl.h" #include "llvm/ADT/DenseMap.h" #include "llvm/ADT/DenseSet.h" #include "llvm/ADT/SmallVector.h" |