We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8070e1a commit e413cc9Copy full SHA for e413cc9
lldb/test/API/functionalities/thread/jump/main.cpp
@@ -13,6 +13,21 @@ T min(T a, T b)
13
}
14
15
16
+int jump_positive_offset() {
17
+ int var_1 = 10;
18
+ var_1 = 20; // breakpoint 1
19
+
20
+ int var_2 = 40; // jump_offset 1
21
+ return var_2;
22
+}
23
24
+int jump_negative_offset() {
25
+ int var_3 = 10; // jump_offset 2
26
+ var_3 = 99;
27
28
+ return var_3; // breakpoint 2
29
30
31
int main ()
32
{
33
int i;
@@ -22,5 +37,7 @@ int main ()
37
i = min(min_i_a, min_i_b); // 3rd marker
38
j = min(min_j_a, min_j_b); // 4th marker
39
40
+ jump_positive_offset();
41
+ jump_negative_offset();
42
return 0;
43
0 commit comments