We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37a13dd commit 61a8e53Copy full SHA for 61a8e53
lldb/source/Plugins/DynamicLoader/Darwin-Kernel/DynamicLoaderDarwinKernel.cpp
@@ -244,7 +244,9 @@ DynamicLoaderDarwinKernel::SearchForKernelWithDebugHints(Process *process) {
244
0xffffff8000004010ULL, // 2014-2015-ish arm64 devices
245
0xffffff8000002010ULL, // oldest arm64 devices
246
LLDB_INVALID_ADDRESS};
247
- addr_t kernel_addresses_32[] = {0xffff0110, LLDB_INVALID_ADDRESS};
+ addr_t kernel_addresses_32[] = {0xffff0110, // 2016 and earlier armv7 devices
248
+ 0xffff1010,
249
+ LLDB_INVALID_ADDRESS};
250
251
uint8_t uval[8];
252
if (process->GetAddressByteSize() == 8) {
0 commit comments