Cash in value analysis of sliced project
ID0000791: This issue was created automatically from Mantis Issue 791. Further discussion may take place here.
Id | Project | Category | View | Due Date | Updated |
---|---|---|---|---|---|
ID0000791 | Frama-C | Plug-in > Eva | public | 2011-04-13 | 2014-02-12 |
Reporter | patrick | Assigned To | pascal | Resolution | fixed |
Priority | normal | Severity | crash | Reproducibility | have not tried |
Platform | - | OS | - | OS Version | - |
Product Version | Frama-C GIT, precise the release id | Target Version | - | Fixed in Version | Frama-C Nitrogen-20111001 |
Description :
Unexpected error (File "src/kernel/cilE.ml", line 268, characters 68-74: Assertion failed).
Additional Information :
Revision: 12829
Command: frama-c bug.c -slice-return send -then-on 'Slicing export' -val
file bug.c /*@ assigns *p \from \empty; assigns \result ; */ int scanf (char const , int * p); /@ assigns \nothing ; */ int send (int x) { return x; } void main(void) { int input; scanf("%d",&input); send (input); }