Author: jingham
Date: Tue Jan 31 12:26:20 2017
New Revision: 293666

URL: http://llvm.org/viewvc/llvm-project?rev=293666&view=rev
Log:
Move the stop point to somewhere before the final use of the
variable we are inspecting.

Modified:
    
lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/vbool/main.cpp

Modified: 
lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/vbool/main.cpp
URL: 
http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/vbool/main.cpp?rev=293666&r1=293665&r2=293666&view=diff
==============================================================================
--- 
lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/vbool/main.cpp
 (original)
+++ 
lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/vbool/main.cpp
 Tue Jan 31 12:26:20 2017
@@ -65,5 +65,6 @@ int main()
     vBool.push_back(true);
     vBool.push_back(true);
 
-    return 0; // Set break point at this line.
+    printf ("size: %d", (int) vBool.size()); // Set break point at this line.
+    return 0; 
 }


_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to