diff options
author | Zachary Turner <zturner@google.com> | 2015-03-03 18:34:26 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2015-03-03 18:34:26 +0000 |
commit | 88c6b62e9c9c1ec3f4a809a468313f39f94bf4bb (patch) | |
tree | 35a6918dac0618732979f9373345721717ca95a1 /lldb/source/API/SBModule.cpp | |
parent | a96989dc8d22ab89dbf4d6dfffb06e871a5a6f37 (diff) | |
download | bcm5719-llvm-88c6b62e9c9c1ec3f4a809a468313f39f94bf4bb.tar.gz bcm5719-llvm-88c6b62e9c9c1ec3f4a809a468313f39f94bf4bb.zip |
Don't #include ClangASTContext.h from Module.h
This is part of a larger effort to reduce header file footprints.
Combined, these patches reduce the build time of LLDB locally by
over 30%. However, they touch many files and make many changes,
so will be submitted in small incremental pieces.
Reviewed By: Greg Clayton
Differential Revision: http://reviews.llvm.org/D8022
llvm-svn: 231097
Diffstat (limited to 'lldb/source/API/SBModule.cpp')
-rw-r--r-- | lldb/source/API/SBModule.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/source/API/SBModule.cpp b/lldb/source/API/SBModule.cpp index 2d89b903037..8d5c235240c 100644 --- a/lldb/source/API/SBModule.cpp +++ b/lldb/source/API/SBModule.cpp @@ -20,6 +20,7 @@ #include "lldb/Core/StreamString.h" #include "lldb/Core/ValueObjectList.h" #include "lldb/Core/ValueObjectVariable.h" +#include "lldb/Symbol/ClangASTContext.h" #include "lldb/Symbol/ObjectFile.h" #include "lldb/Symbol/SymbolVendor.h" #include "lldb/Symbol/Symtab.h" |