aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Plugins/Process/gdb-remote/GDBRemoteRegisterContext.cpp
diff options
context:
space:
mode:
authorTodd Fiala <todd.fiala@gmail.com>2014-07-23 14:37:35 +0000
committerTodd Fiala <todd.fiala@gmail.com>2014-07-23 14:37:35 +0000
commitd8eaa17587ecdb1c9f185a82f86d41d2157b6e7d (patch)
treed50de619923881fbfc7cba788e59e6b5d2cef447 /lldb/source/Plugins/Process/gdb-remote/GDBRemoteRegisterContext.cpp
parent14ff2df05c241297f0139f46c825dc333eea4b9c (diff)
downloadllvm-d8eaa17587ecdb1c9f185a82f86d41d2157b6e7d.zip
llvm-d8eaa17587ecdb1c9f185a82f86d41d2157b6e7d.tar.gz
llvm-d8eaa17587ecdb1c9f185a82f86d41d2157b6e7d.tar.bz2
Update lldb to track recent Triple arm64 enum removal and collapse into aarch64.
See the following llvm change for details: r213743 | tnorthover | 2014-07-23 05:32:47 -0700 (Wed, 23 Jul 2014) | 9 lines AArch64: remove arm64 triple enumerator. This change fixes build breaks on Linux and MacOSX lldb. llvm-svn: 213755
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote/GDBRemoteRegisterContext.cpp')
-rw-r--r--lldb/source/Plugins/Process/gdb-remote/GDBRemoteRegisterContext.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteRegisterContext.cpp b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteRegisterContext.cpp
index 1eed9ef..99e1a03 100644
--- a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteRegisterContext.cpp
+++ b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteRegisterContext.cpp
@@ -807,7 +807,7 @@ GDBRemoteRegisterContext::WriteAllRegisterValues (const lldb::DataBufferSP &data
{
const ArchSpec &arch = m_thread.GetProcess()->GetTarget().GetArchitecture();
if (arch.IsValid()
- && arch.GetMachine() == llvm::Triple::arm64
+ && arch.GetMachine() == llvm::Triple::aarch64
&& arch.GetTriple().getVendor() == llvm::Triple::Apple
&& arch.GetTriple().getOS() == llvm::Triple::IOS)
{