diff options
author | Chris Lattner <sabre@nondot.org> | 2009-06-14 01:54:56 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-06-14 01:54:56 +0000 |
commit | 15ba94987aa1620a75e6766f022228bd48cacfdf (patch) | |
tree | be5f07cfa86ef04eba08774981a9adcb87443ee7 /clang/lib/CodeGen/CGExprConstant.cpp | |
parent | 5abdec7978e984a2b9f4fe0067b3af3337ba6d9c (diff) | |
download | bcm5719-llvm-15ba94987aa1620a75e6766f022228bd48cacfdf.tar.gz bcm5719-llvm-15ba94987aa1620a75e6766f022228bd48cacfdf.zip |
Sink the BuiltinInfo object from ASTContext into the
preprocessor and initialize it early in clang-cc. This
ensures that __has_builtin works in all modes, not just
when ASTContext is around.
llvm-svn: 73319
Diffstat (limited to 'clang/lib/CodeGen/CGExprConstant.cpp')
-rw-r--r-- | clang/lib/CodeGen/CGExprConstant.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/clang/lib/CodeGen/CGExprConstant.cpp b/clang/lib/CodeGen/CGExprConstant.cpp index b30bafb5105..0e21a00f30f 100644 --- a/clang/lib/CodeGen/CGExprConstant.cpp +++ b/clang/lib/CodeGen/CGExprConstant.cpp @@ -17,6 +17,7 @@ #include "clang/AST/APValue.h" #include "clang/AST/ASTContext.h" #include "clang/AST/StmtVisitor.h" +#include "clang/Basic/Builtins.h" #include "llvm/Constants.h" #include "llvm/Function.h" #include "llvm/GlobalVariable.h" |