diff options
| author | Jim Ingham <jingham@apple.com> | 2011-05-04 03:43:18 +0000 |
|---|---|---|
| committer | Jim Ingham <jingham@apple.com> | 2011-05-04 03:43:18 +0000 |
| commit | 2837b766f594f6aa0ec17c96bc8d257e2569d65e (patch) | |
| tree | 3333316451bc06a2e495379451073b94abe38f9e /lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.h | |
| parent | 3d57441e56104b2bd93d85b4d19af1f5f40dbf82 (diff) | |
| download | bcm5719-llvm-2837b766f594f6aa0ec17c96bc8d257e2569d65e.tar.gz bcm5719-llvm-2837b766f594f6aa0ec17c96bc8d257e2569d65e.zip | |
Change "frame var" over to using OptionGroups (and thus the OptionGroupVariableObjectDisplay).
Change the boolean "use_dynamic" over to a tri-state, no-dynamic, dynamic-w/o running target,
and dynamic with running target.
llvm-svn: 130832
Diffstat (limited to 'lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.h')
| -rw-r--r-- | lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.h b/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.h index 93395ff2ab5..0b45d7d6f18 100644 --- a/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.h +++ b/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.h @@ -32,7 +32,10 @@ public: // These are generic runtime functions: virtual bool - GetDynamicTypeAndAddress (ValueObject &in_value, TypeAndOrName &class_type_or_name, Address &address); + GetDynamicTypeAndAddress (ValueObject &in_value, + lldb::DynamicValueType use_dynamic, + TypeAndOrName &class_type_or_name, + Address &address); virtual ClangUtilityFunction * CreateObjectChecker (const char *); |

