summaryrefslogtreecommitdiffstats
path: root/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.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/GDBRemoteCommunicationServer.cpp
parent14ff2df05c241297f0139f46c825dc333eea4b9c (diff)
downloadbcm5719-llvm-d8eaa17587ecdb1c9f185a82f86d41d2157b6e7d.tar.gz
bcm5719-llvm-d8eaa17587ecdb1c9f185a82f86d41d2157b6e7d.zip
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/GDBRemoteCommunicationServer.cpp')
-rw-r--r--lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.cpp b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.cpp
index b9d59e72ed9..44475981bdd 100644
--- a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.cpp
+++ b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.cpp
@@ -1338,7 +1338,7 @@ CreateProcessInfoResponse_DebugServerStyle (const ProcessInstanceInfo &proc_info
switch (proc_triple.getArch ())
{
case llvm::Triple::arm:
- case llvm::Triple::arm64:
+ case llvm::Triple::aarch64:
ostype = "ios";
break;
default:
OpenPOWER on IntegriCloud