File tree 3 files changed +9
-93
lines changed 3 files changed +9
-93
lines changed Original file line number Diff line number Diff line change @@ -65,7 +65,6 @@ Overview of Documentation
65
65
you can access it <a href=
66
66
"https://svn.cprover.org/wiki/doku.php?id=cprover_tutorial">here </a >.
67
67
68
- * \subpage memory-analyzer
69
68
* \subpage memory-bounds-checking
70
69
* \subpage satabs
71
70
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -42,18 +42,18 @@ option is necessary when compiling for the program symbols to be visible.
42
42
.PP
43
43
Take for example the following program:
44
44
.EX
45
- .IP
46
- // main.c
47
- void checkpoint () {}
45
+ .in +4 n
46
+ \fB // main.c \fP
47
+ void \fB checkpoint \fP () {}
48
48
49
49
int array[] = {1, 2, 3};
50
50
51
- int main()
52
- {
51
+ int \fB main \fP () {
53
52
array[1] = 4;
54
- checkpoint ();
55
- return 0;
53
+ \fB checkpoint \fP ();
54
+ \fB return \fP 0;
56
55
}
56
+ .in
57
57
.EE
58
58
.PP
59
59
Say we are interested in the evaluation of \fI array \fR at the call-site of
@@ -70,10 +70,11 @@ memory-analyzer --breakpoint checkpoint --symbols array main_exe
70
70
.PP
71
71
to obtain as output the human readable list of values for each requested symbol:
72
72
.EX
73
- .IP
73
+ .in +4 n
74
74
{
75
75
array = { 1, 4, 3 };
76
76
}
77
+ .in
77
78
.EE
78
79
.PP
79
80
The above result is useful for the user and their preliminary analysis but does
You can’t perform that action at this time.
0 commit comments