<rdar://problem/11870357>

Allow "frame variable" to find ivars without the need for "this->" or "self->".  

llvm-svn: 160211
diff --git a/lldb/source/API/SBFrame.cpp b/lldb/source/API/SBFrame.cpp
index 0151074..0404120 100644
--- a/lldb/source/API/SBFrame.cpp
+++ b/lldb/source/API/SBFrame.cpp
@@ -534,7 +534,7 @@
             Error error;
             ValueObjectSP value_sp (frame->GetValueForVariableExpressionPath (var_path, 
                                                                               use_dynamic,
-                                                                              StackFrame::eExpressionPathOptionCheckPtrVsMember,
+                                                                              StackFrame::eExpressionPathOptionCheckPtrVsMember | StackFrame::eExpressionPathOptionsAllowDirectIVarAccess,
                                                                               var_sp,
                                                                               error));
             sb_value.SetSP(value_sp);