forked from OSchip/llvm-project
<rdar://problem/10658091>
Fixed dynamic types for objective C to not try and make everything dynamic including base classes. llvm-svn: 147722
This commit is contained in:
parent
bbf8c9a939
commit
11c99162c4
|
@ -180,7 +180,7 @@ AppleObjCRuntime::CouldHaveDynamicValue (ValueObject &in_value)
|
|||
{
|
||||
lldb::LanguageType known_type = in_value.GetObjectRuntimeLanguage();
|
||||
if (known_type == lldb::eLanguageTypeObjC)
|
||||
return true;
|
||||
return in_value.IsPossibleDynamicType ();
|
||||
else
|
||||
return in_value.IsPointerType();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue