[Lldb-commits] [lldb] r216556 - lldb AArch64 should be listed as yet another 64-bit architecture in HostInfoBase.
Todd Fiala
todd.fiala at gmail.com
Wed Aug 27 09:21:42 PDT 2014
Author: tfiala
Date: Wed Aug 27 11:21:41 2014
New Revision: 216556
URL: http://llvm.org/viewvc/llvm-project?rev=216556&view=rev
Log:
lldb AArch64 should be listed as yet another 64-bit architecture in HostInfoBase.
See http://reviews.llvm.org/D5070.
Change by Paul Osmialowski.
Modified:
lldb/trunk/source/Host/common/HostInfoBase.cpp
Modified: lldb/trunk/source/Host/common/HostInfoBase.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Host/common/HostInfoBase.cpp?rev=216556&r1=216555&r2=216556&view=diff
==============================================================================
--- lldb/trunk/source/Host/common/HostInfoBase.cpp (original)
+++ lldb/trunk/source/Host/common/HostInfoBase.cpp Wed Aug 27 11:21:41 2014
@@ -308,6 +308,7 @@ HostInfoBase::ComputeHostArchitectureSup
arch_32.SetTriple(triple.get32BitArchVariant());
break;
+ case llvm::Triple::aarch64:
case llvm::Triple::mips64:
case llvm::Triple::sparcv9:
case llvm::Triple::ppc64:
More information about the lldb-commits
mailing list