diff options
| author | Pavel Labath <pavel@labath.sk> | 2018-08-07 11:07:21 +0000 |
|---|---|---|
| committer | Pavel Labath <pavel@labath.sk> | 2018-08-07 11:07:21 +0000 |
| commit | d821c997aa5469eda05eac6c922d8b731b21e722 (patch) | |
| tree | 246533d99b6d7569cc7d612fc15397d0455ed736 /lldb/source/Plugins/Process/Linux/NativeThreadLinux.cpp | |
| parent | 949a17c016e76173a4df30a307c5787da37e839f (diff) | |
| download | llvm-d821c997aa5469eda05eac6c922d8b731b21e722.tar.gz llvm-d821c997aa5469eda05eac6c922d8b731b21e722.tar.bz2 llvm-d821c997aa5469eda05eac6c922d8b731b21e722.zip | |
Move RegisterValue,Scalar,State from Core to Utility
These three classes have no external dependencies, but they are used
from various low-level APIs. Moving them down to Utility improves
overall code layering (although it still does not break any particular
dependency completely).
The XCode project will need to be updated after this change.
Differential Revision: https://reviews.llvm.org/D49740
llvm-svn: 339127
Diffstat (limited to 'lldb/source/Plugins/Process/Linux/NativeThreadLinux.cpp')
| -rw-r--r-- | lldb/source/Plugins/Process/Linux/NativeThreadLinux.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/Process/Linux/NativeThreadLinux.cpp b/lldb/source/Plugins/Process/Linux/NativeThreadLinux.cpp index 4ab2a9ae6245..b64689c9d17b 100644 --- a/lldb/source/Plugins/Process/Linux/NativeThreadLinux.cpp +++ b/lldb/source/Plugins/Process/Linux/NativeThreadLinux.cpp @@ -16,12 +16,12 @@ #include "NativeRegisterContextLinux.h" #include "SingleStepCheck.h" -#include "lldb/Core/State.h" #include "lldb/Host/HostNativeThread.h" #include "lldb/Host/linux/Ptrace.h" #include "lldb/Host/linux/Support.h" #include "lldb/Utility/LLDBAssert.h" #include "lldb/Utility/Log.h" +#include "lldb/Utility/State.h" #include "lldb/lldb-enumerations.h" #include "llvm/ADT/SmallString.h" |
