commit | 9803178a78c1858b0ac868c2cdf402cec5a10db9 | [log] [tgz] |
---|---|---|
author | Reid Kleckner <rnk@google.com> | Mon Dec 09 16:11:56 2019 -0800 |
committer | Reid Kleckner <rnk@google.com> | Mon Dec 09 16:17:18 2019 -0800 |
tree | 1e6406871a61926a4e46e39639e2d97b2e2caa2d | |
parent | 7c69a03c56601a55f47f29ea59e33c37e62db556 [diff] [blame] |
Avoid Attr.h includes, CodeGen edition This saves around 20 includes of Attr.h. Not much.
diff --git a/clang/lib/CodeGen/CGDecl.cpp b/clang/lib/CodeGen/CGDecl.cpp index 2ddc1a6..61fb8fa 100644 --- a/clang/lib/CodeGen/CGDecl.cpp +++ b/clang/lib/CodeGen/CGDecl.cpp
@@ -22,6 +22,7 @@ #include "PatternInit.h" #include "TargetInfo.h" #include "clang/AST/ASTContext.h" +#include "clang/AST/Attr.h" #include "clang/AST/CharUnits.h" #include "clang/AST/Decl.h" #include "clang/AST/DeclObjC.h"