diff options
author | Enrico Granata <egranata@apple.com> | 2016-08-06 00:57:07 +0000 |
---|---|---|
committer | Enrico Granata <egranata@apple.com> | 2016-08-06 00:57:07 +0000 |
commit | 0765abf7723e2cbd907c48915f96a77f4ba0bee1 (patch) | |
tree | 9fcc680ec4a682b09aaf33bca63c0ac56732a579 | |
parent | 62a459603c2b9cf219a3102146d285a860f1cef7 (diff) | |
download | bcm5719-llvm-0765abf7723e2cbd907c48915f96a77f4ba0bee1.tar.gz bcm5719-llvm-0765abf7723e2cbd907c48915f96a77f4ba0bee1.zip |
The lack of classes in the hash table is not an error - it's very legitimately possible for a process to define no ObjC classes of its own. Discovered by debugging /bin/ls
llvm-svn: 277897
-rw-r--r-- | lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.cpp b/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.cpp index caa875ebd91..2160274f2b3 100644 --- a/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.cpp +++ b/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.cpp @@ -1389,7 +1389,7 @@ AppleObjCRuntimeV2::UpdateISAToDescriptorMapDynamic(RemoteNXMapTable &hash_table { if (log) log->Printf ("No dynamic classes found in gdb_objc_realized_classes."); - return DescriptorMapUpdateResult::Fail(); + return DescriptorMapUpdateResult::Success(0); } // Make some types for our arguments |