diff options
Diffstat (limited to 'lldb/source/Plugins/Process/POSIX/POSIXThread.cpp')
-rw-r--r-- | lldb/source/Plugins/Process/POSIX/POSIXThread.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lldb/source/Plugins/Process/POSIX/POSIXThread.cpp b/lldb/source/Plugins/Process/POSIX/POSIXThread.cpp index 9210408fdad..11ed3d18620 100644 --- a/lldb/source/Plugins/Process/POSIX/POSIXThread.cpp +++ b/lldb/source/Plugins/Process/POSIX/POSIXThread.cpp @@ -99,6 +99,8 @@ POSIXThread::GetRegisterContext() break; case ArchSpec::eCore_x86_64_x86_64: +// TODO: Use target OS/architecture detection rather than ifdefs so that +// lldb built on FreeBSD can debug on Linux and vice-versa. #ifdef __linux__ m_reg_context_sp.reset(new RegisterContextLinux_x86_64(*this, 0)); #endif |