[Lldb-commits] [lldb] r293666 - Move the stop point to somewhere before the final use of the
Jim Ingham via lldb-commits
lldb-commits at lists.llvm.org
Tue Jan 31 10:26:22 PST 2017
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;
}
More information about the lldb-commits
mailing list