diff options
author | Jason Molenda <jmolenda@apple.com> | 2017-06-29 22:50:53 +0000 |
---|---|---|
committer | Jason Molenda <jmolenda@apple.com> | 2017-06-29 22:50:53 +0000 |
commit | d2d4c8db457daff37f89905bf4229fe2b719ed85 (patch) | |
tree | 5776663a06a2086dba4571e210476b47a8caa434 | |
parent | b640ab92c2c91af91a2c6780ce576813d7de7920 (diff) | |
download | bcm5719-llvm-d2d4c8db457daff37f89905bf4229fe2b719ed85.tar.gz bcm5719-llvm-d2d4c8db457daff37f89905bf4229fe2b719ed85.zip |
Update default cpu subtype for armv7 processes to armv7k, the most
likely cpu subtype at this point.
llvm-svn: 306752
-rw-r--r-- | lldb/tools/debugserver/source/RNBRemote.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/tools/debugserver/source/RNBRemote.cpp b/lldb/tools/debugserver/source/RNBRemote.cpp index 038142a0351..cf6b4b62691 100644 --- a/lldb/tools/debugserver/source/RNBRemote.cpp +++ b/lldb/tools/debugserver/source/RNBRemote.cpp @@ -6058,7 +6058,7 @@ rnb_err_t RNBRemote::HandlePacket_qProcessInfo(const char *p) { // 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 << ';'; |