Skip to content

Commit b95c9b7

Browse files
committed
[lldb] Remove the last radar link in LLDB source code (NFC)
This was probably the only really useful radar in our source code. It's a request to be able to tell if __LINKEDIT has been mapped or not. I've left a comment in the radar that we should update the corresponding code if and when such an ability becomes available.
1 parent b699bf6 commit b95c9b7

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

lldb/source/Plugins/DynamicLoader/Darwin-Kernel/DynamicLoaderDarwinKernel.cpp

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -909,10 +909,8 @@ bool DynamicLoaderDarwinKernel::KextImageInfo::LoadImageUsingMemoryModule(
909909
ondisk_section_list->GetSectionAtIndex(sect_idx));
910910
if (ondisk_section_sp) {
911911
// Don't ever load __LINKEDIT as it may or may not be actually
912-
// mapped into memory and there is no current way to tell.
913-
// I filed rdar://problem/12851706 to track being able to tell
914-
// if the __LINKEDIT is actually mapped, but until then, we need
915-
// to not load the __LINKEDIT
912+
// mapped into memory and there is no current way to tell. Until
913+
// such an ability exists, do not load the __LINKEDIT.
916914
if (ignore_linkedit &&
917915
ondisk_section_sp->GetName() == g_section_name_LINKEDIT)
918916
continue;

0 commit comments

Comments
 (0)