File tree Expand file tree Collapse file tree 3 files changed +9
-93
lines changed
Expand file tree Collapse file tree 3 files changed +9
-93
lines changed Original file line number Diff line number Diff line change @@ -65,7 +65,6 @@ Overview of Documentation
6565you can access it <a href=
6666"https://svn.cprover.org/wiki/doku.php?id=cprover_tutorial">here </a >.
6767
68- * \subpage memory-analyzer
6968* \subpage memory-bounds-checking
7069* \subpage satabs
7170
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.
4242.PP
4343Take for example the following program:
4444.EX
45- .IP
46- // main.c
47- void checkpoint () {}
45+ .in +4 n
46+ \fB // main.c \fP
47+ void \fB checkpoint \fP () {}
4848
4949int array[] = {1, 2, 3};
5050
51- int main()
52- {
51+ int \fB main \fP () {
5352 array[1] = 4;
54- checkpoint ();
55- return 0;
53+ \fB checkpoint \fP ();
54+ \fB return \fP 0;
5655}
56+ .in
5757 .EE
5858.PP
5959Say 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
7070.PP
7171to obtain as output the human readable list of values for each requested symbol:
7272.EX
73- .IP
73+ .in +4 n
7474{
7575 array = { 1, 4, 3 };
7676}
77+ .in
7778 .EE
7879.PP
7980The 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