[Lldb-commits] [lldb] r306752 - Update default cpu subtype for armv7 processes to armv7k, the most
Jason Molenda via lldb-commits
lldb-commits at lists.llvm.org
Thu Jun 29 15:50:53 PDT 2017
Author: jmolenda
Date: Thu Jun 29 15:50:53 2017
New Revision: 306752
URL: http://llvm.org/viewvc/llvm-project?rev=306752&view=rev
Log:
Update default cpu subtype for armv7 processes to armv7k, the most
likely cpu subtype at this point.
Modified:
lldb/trunk/tools/debugserver/source/RNBRemote.cpp
Modified: lldb/trunk/tools/debugserver/source/RNBRemote.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/tools/debugserver/source/RNBRemote.cpp?rev=306752&r1=306751&r2=306752&view=diff
==============================================================================
--- lldb/trunk/tools/debugserver/source/RNBRemote.cpp (original)
+++ lldb/trunk/tools/debugserver/source/RNBRemote.cpp Thu Jun 29 15:50:53 2017
@@ -6058,7 +6058,7 @@ rnb_err_t RNBRemote::HandlePacket_qProce
// need to override the host cpusubtype (which is in the
// CPU_SUBTYPE_ARM64 subtype namespace)
// with a reasonable CPU_SUBTYPE_ARMV7 subtype.
- cpusubtype = 11; // CPU_SUBTYPE_ARM_V7S
+ cpusubtype = 12; // CPU_SUBTYPE_ARM_V7K
}
}
rep << "cpusubtype:" << std::hex << cpusubtype << ';';
More information about the lldb-commits
mailing list