^ —————. —.— . . —.— . . .————— . .
——— | | | | | | || | | | |
—(o)— | | | | | | | | | |———— '————|
——————— | | | | | | | || | |
————————— —————' —'— ' —'— ' ' '————— '
home manual roadmap issues status papers download
- Timestamp:
-
10/27/2018 06:23:48 PM (6 years ago)
- Author:
-
Vladimír Štill
- Comment:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
-
initial
|
v1
|
|
1 | 1 | 9. `divine check --svcomp --symbolic ~/repo/sv-benchmarks/c/array-memsafety/bubblesort-alloca_true-valid-memsafety_true-termination.c` |
2 | 2 | |
3 | | There is a spurious memory error, probably due to the fact that SYM transformation fails to detect that it is sending symbolic value to `alloca`, which results in alloca allocating based on the current explicit value in the variable (which is 0, resulting in allocation size 1). I suggest this problem is for now resolved by an `UNREACHABLE` in SYM transformation |
| 3 | There is a spurious memory error, probably due to the fact that SYM transformation fails to detect that it is sending symbolic value to `alloca`, which results in alloca allocating based on the current explicit value in the variable (which is 0, resulting in allocation size 1). I suggest this problem is for now resolved by an `UNREACHABLE` in SYM transformation. |