diff options
author | Zachary Turner <zturner@google.com> | 2015-03-03 19:23:09 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2015-03-03 19:23:09 +0000 |
commit | 32abc6edac8fb7d4cb9472bf00246dba19d1d47b (patch) | |
tree | 24da0fc148a5a3c83587d8afbfee4c432ab88dac /lldb/source/Commands/CommandObjectArgs.cpp | |
parent | fff8e7f6ba1e05d4c45df6923609a73e0300db1f (diff) | |
download | llvm-32abc6edac8fb7d4cb9472bf00246dba19d1d47b.zip llvm-32abc6edac8fb7d4cb9472bf00246dba19d1d47b.tar.gz llvm-32abc6edac8fb7d4cb9472bf00246dba19d1d47b.tar.bz2 |
Reduce header footprint of Target.h
This continues the effort to reduce header footprint and improve
build speed by removing clang and other unnecessary headers
from Target.h. In one case, some headers were included solely
for the purpose of declaring a nested class in Target, which was
not needed by anybody outside the class. In this case the
definition and implementation of the nested class were isolated
in the .cpp file so the header could be removed.
llvm-svn: 231107
Diffstat (limited to 'lldb/source/Commands/CommandObjectArgs.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectArgs.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/source/Commands/CommandObjectArgs.cpp b/lldb/source/Commands/CommandObjectArgs.cpp index b0fe42b..58d8fca 100644 --- a/lldb/source/Commands/CommandObjectArgs.cpp +++ b/lldb/source/Commands/CommandObjectArgs.cpp @@ -27,6 +27,7 @@ #include "lldb/Interpreter/CommandReturnObject.h" #include "lldb/Symbol/ObjectFile.h" #include "lldb/Symbol/Variable.h" +#include "lldb/Target/ABI.h" #include "lldb/Target/Process.h" #include "lldb/Target/Target.h" #include "lldb/Target/Thread.h" |