diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2015-01-14 11:29:14 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2015-01-14 11:29:14 +0000 |
commit | 0d9593ddec81ed33154f085c94da0478ce6f982b (patch) | |
tree | 514df8d7b9db0d6e76da279e01496fbdb78af86c /clang/lib/CodeGen/CodeGenAction.cpp | |
parent | 89642a7b3713409e44c983b511315aced75408c8 (diff) | |
download | llvm-0d9593ddec81ed33154f085c94da0478ce6f982b.zip llvm-0d9593ddec81ed33154f085c94da0478ce6f982b.tar.gz llvm-0d9593ddec81ed33154f085c94da0478ce6f982b.tar.bz2 |
[cleanup] Re-sort *all* #include lines with llvm/utils/sort_includes.py
Sorry for the noise, I managed to miss a bunch of recent regressions of
include orderings here. This should actually sort all the includes for
Clang. Again, no functionality changed, this is just a mechanical
cleanup that I try to run periodically to keep the #include lines as
regular as possible across the project.
llvm-svn: 225979
Diffstat (limited to 'clang/lib/CodeGen/CodeGenAction.cpp')
-rw-r--r-- | clang/lib/CodeGen/CodeGenAction.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/lib/CodeGen/CodeGenAction.cpp b/clang/lib/CodeGen/CodeGenAction.cpp index f86fb1f..a6f6fde 100644 --- a/clang/lib/CodeGen/CodeGenAction.cpp +++ b/clang/lib/CodeGen/CodeGenAction.cpp @@ -8,19 +8,19 @@ //===----------------------------------------------------------------------===// #include "CoverageMappingGen.h" -#include "clang/CodeGen/CodeGenAction.h" #include "clang/AST/ASTConsumer.h" #include "clang/AST/ASTContext.h" -#include "clang/AST/DeclGroup.h" #include "clang/AST/DeclCXX.h" +#include "clang/AST/DeclGroup.h" #include "clang/Basic/FileManager.h" #include "clang/Basic/SourceManager.h" #include "clang/Basic/TargetInfo.h" -#include "clang/Lex/Preprocessor.h" #include "clang/CodeGen/BackendUtil.h" +#include "clang/CodeGen/CodeGenAction.h" #include "clang/CodeGen/ModuleBuilder.h" #include "clang/Frontend/CompilerInstance.h" #include "clang/Frontend/FrontendDiagnostic.h" +#include "clang/Lex/Preprocessor.h" #include "llvm/ADT/SmallString.h" #include "llvm/Bitcode/ReaderWriter.h" #include "llvm/IR/DebugInfo.h" |