diff options
author | Pavel Labath <labath@google.com> | 2017-11-13 16:16:33 +0000 |
---|---|---|
committer | Pavel Labath <labath@google.com> | 2017-11-13 16:16:33 +0000 |
commit | 5f19b9078349b12459a30e6e287d36de54a1329e (patch) | |
tree | ae66ff2e9788d850ba0fe16bdb8166478d3983de /lldb/source/Core/ValueObjectDynamicValue.cpp | |
parent | 69aa20e3caa5aeb291241765288d31d65c817a97 (diff) | |
download | bcm5719-llvm-5f19b9078349b12459a30e6e287d36de54a1329e.tar.gz bcm5719-llvm-5f19b9078349b12459a30e6e287d36de54a1329e.zip |
Move ArchSpec to the Utility module
The rationale here is that ArchSpec is used throughout the codebase,
including in places which should not depend on the rest of the code in
the Core module.
This commit touches many files, but most of it is just renaming of
#include lines. In a couple of cases, I removed the #include ArchSpec
line altogether, as the file was not using it. In one or two places,
this necessitated adding other #includes like lldb-private-defines.h.
llvm-svn: 318048
Diffstat (limited to 'lldb/source/Core/ValueObjectDynamicValue.cpp')
-rw-r--r-- | lldb/source/Core/ValueObjectDynamicValue.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lldb/source/Core/ValueObjectDynamicValue.cpp b/lldb/source/Core/ValueObjectDynamicValue.cpp index bb39caa767e..0013d0dbf74 100644 --- a/lldb/source/Core/ValueObjectDynamicValue.cpp +++ b/lldb/source/Core/ValueObjectDynamicValue.cpp @@ -8,9 +8,7 @@ //===----------------------------------------------------------------------===// #include "lldb/Core/ValueObjectDynamicValue.h" - -#include "lldb/Core/ArchSpec.h" // for ArchSpec -#include "lldb/Core/Scalar.h" // for Scalar, operator!= +#include "lldb/Core/Scalar.h" // for Scalar, operator!= #include "lldb/Core/Value.h" #include "lldb/Core/ValueObject.h" #include "lldb/Symbol/CompilerType.h" |