diff options
author | Pavel Labath <labath@google.com> | 2015-08-24 13:25:54 +0000 |
---|---|---|
committer | Pavel Labath <labath@google.com> | 2015-08-24 13:25:54 +0000 |
commit | 0f4b17d12c8852a96525e4acdb09dd262b4f27d3 (patch) | |
tree | 1f098fd3f3e7c286bd6b2b6b13fa51d4d06fe543 /lldb/source/Plugins/Process/Linux | |
parent | 84f43f36f3d6997e028b55d65932c15be114bacb (diff) | |
download | bcm5719-llvm-0f4b17d12c8852a96525e4acdb09dd262b4f27d3.tar.gz bcm5719-llvm-0f4b17d12c8852a96525e4acdb09dd262b4f27d3.zip |
Simplify NativeThreadLinux includes
there is no need to include architecture-specific register contexts when the generic one will
suffice.
llvm-svn: 245839
Diffstat (limited to 'lldb/source/Plugins/Process/Linux')
-rw-r--r-- | lldb/source/Plugins/Process/Linux/NativeThreadLinux.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lldb/source/Plugins/Process/Linux/NativeThreadLinux.cpp b/lldb/source/Plugins/Process/Linux/NativeThreadLinux.cpp index 87bb02e32b7..cbf82885e23 100644 --- a/lldb/source/Plugins/Process/Linux/NativeThreadLinux.cpp +++ b/lldb/source/Plugins/Process/Linux/NativeThreadLinux.cpp @@ -13,10 +13,7 @@ #include <sstream> #include "NativeProcessLinux.h" -#include "NativeRegisterContextLinux_arm.h" -#include "NativeRegisterContextLinux_arm64.h" -#include "NativeRegisterContextLinux_x86_64.h" -#include "NativeRegisterContextLinux_mips64.h" +#include "NativeRegisterContextLinux.h" #include "lldb/Core/Log.h" #include "lldb/Core/State.h" |