diff options
author | Reid Kleckner <rnk@google.com> | 2019-12-09 16:11:56 -0800 |
---|---|---|
committer | Reid Kleckner <rnk@google.com> | 2019-12-09 16:17:18 -0800 |
commit | 9803178a78c1858b0ac868c2cdf402cec5a10db9 (patch) | |
tree | 1e6406871a61926a4e46e39639e2d97b2e2caa2d /clang/lib/CodeGen/CGBlocks.cpp | |
parent | 7c69a03c56601a55f47f29ea59e33c37e62db556 (diff) | |
download | bcm5719-llvm-9803178a78c1858b0ac868c2cdf402cec5a10db9.tar.gz bcm5719-llvm-9803178a78c1858b0ac868c2cdf402cec5a10db9.zip |
Avoid Attr.h includes, CodeGen edition
This saves around 20 includes of Attr.h. Not much.
Diffstat (limited to 'clang/lib/CodeGen/CGBlocks.cpp')
-rw-r--r-- | clang/lib/CodeGen/CGBlocks.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/clang/lib/CodeGen/CGBlocks.cpp b/clang/lib/CodeGen/CGBlocks.cpp index 6a1a7395531..b0295ce69bf 100644 --- a/clang/lib/CodeGen/CGBlocks.cpp +++ b/clang/lib/CodeGen/CGBlocks.cpp @@ -19,6 +19,7 @@ #include "CodeGenModule.h" #include "ConstantEmitter.h" #include "TargetInfo.h" +#include "clang/AST/Attr.h" #include "clang/AST/DeclObjC.h" #include "clang/CodeGen/ConstantInitBuilder.h" #include "llvm/ADT/SmallSet.h" |