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 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
|
[kernel] Parsing share/libc/__fc_builtin_for_normalization.i (no preprocessing)
[kernel] Parsing tests/value/bts1306.i (no preprocessing)
[value] Analyzing a complete application starting at main
[value] Computing initial state
[value] Initial state computed
[value:initial-state] Values of globals at initialization
[value] computing for function g <- main.
Called from tests/value/bts1306.i:9.
tests/value/bts1306.i:5:[value] warning: non-finite double value. assert \is_finite((double)(x * x));
[value] Recording results for g
[value] Done for function g
[value] Recording results for main
[value] done for function main
[value] ====== VALUES COMPUTED ======
[value:final-states] Values at end of function g:
y ∈ [-1.79769313486e+308 .. 1.79769313486e+308]
[value:final-states] Values at end of function main:
__retres ∈ {0}
/* Generated by Frama-C */
void g(double x)
{
double y;
/*@ assert Value: is_nan_or_infinite: \is_finite((double)(x * x)); */
y = x * x;
return;
}
int main(double x)
{
int __retres;
g(x);
__retres = 0;
return __retres;
}
[value] Analyzing a complete application starting at main
[value] Computing initial state
[value] Initial state computed
[value:initial-state] Values of globals at initialization
[value] computing for function g <- main.
Called from tests/value/bts1306.i:9.
tests/value/bts1306.i:5:[value] warning: non-finite double value. assert \is_finite((double)(x * x));
[value] Recording results for g
[value] Done for function g
[value] Recording results for main
[value] done for function main
[value] ====== VALUES COMPUTED ======
[value:final-states] Values at end of function g:
y ∈ [-1.79769313486e+308 .. 1.79769313486e+308]
[value:final-states] Values at end of function main:
__retres ∈ {0}
/* Generated by Frama-C */
void g(double x)
{
double y;
/*@ assert Value: is_nan_or_infinite: \is_finite((double)(x * x)); */
y = x * x;
return;
}
int main(double x)
{
int __retres;
g(x);
__retres = 0;
return __retres;
}
|