Skip to content
Snippets Groups Projects
Commit 3401447d authored by David Bühler's avatar David Bühler
Browse files

Merge branch 'fix/eva/trace-partitionning-stack-overflow' into 'master'

[Eva] Bug fix in the "smashed" function of trace_partitionning.ml

See merge request frama-c/frama-c!3910
parents f1473537 3b427eb0
No related branches found
No related tags found
No related merge requests found
......@@ -117,7 +117,9 @@ struct
let smashed (s : store) : state Lattice_bounds.or_bottom =
match expanded s with
| [] -> `Bottom
| (_k, v1) :: l -> `Value (List.fold_left Domain.join v1 (List.map snd l))
| (_k, v1) :: l ->
let f acc (_k, v) = Domain.join acc v in
`Value (List.fold_left f v1 l)
let contents (flow : flow) : state list =
Flow.to_list flow
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment