1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
|
[kernel] Parsing temporary_location.c (with preprocessing)
[kernel] __retres -> temporary_location.c:7
[kernel] __retres -> temporary_location.c:7
[kernel] __retres -> temporary_location.c:7
[kernel] __retres -> temporary_location.c:17
[kernel] tmp_0 -> temporary_location.c:11
[kernel] f -> temporary_location.c:6
[kernel] tmp_0 -> temporary_location.c:11
[kernel] __retres -> temporary_location.c:17
[kernel] x -> temporary_location.c:15
[kernel] tmp -> temporary_location.c:16
[kernel] x -> temporary_location.c:15
[kernel] x -> temporary_location.c:15
[kernel] x -> temporary_location.c:15
[kernel] x -> temporary_location.c:15
[kernel] y -> temporary_location.c:16
[kernel] tmp -> temporary_location.c:16
[kernel] __retres -> temporary_location.c:17
[kernel] y -> temporary_location.c:16
[kernel] __retres -> temporary_location.c:17
/* Generated by Frama-C */
int f(void)
{
int __retres;
__retres = 1;
return __retres;
}
int main(void)
{
int __retres;
int tmp_0;
tmp_0 = f();
if (tmp_0) {
__retres = 0;
goto return_label;
}
else {
int tmp;
int x = 0;
tmp = x;
x ++;
int y = tmp + 1;
__retres = y + 3;
goto return_label;
}
return_label: return __retres;
}
|