Skip to content

Commit

Permalink
Fix transform_ght for changed global invariant type
Browse files Browse the repository at this point in the history
  • Loading branch information
sim642 committed Jan 20, 2022
1 parent 3acd89c commit 3f4a3cd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/state/gvGoblint.ml
Original file line number Diff line number Diff line change
Expand Up @@ -113,10 +113,10 @@ module Make
in
let f k v =
match v with
| `Assoc l -> List.iter (fun (a, r) -> insert_analysis_result a (Spec.V.show k) r) l
| `Assoc l -> List.iter (fun (a, r) -> insert_analysis_result a (EQSys.GVar.show k) r) l
| _ -> failwith "Not sure if this is supposed to happen."
in
gh |> GHT.map (fun _ -> representation_of_yojson % GSpec.to_yojson) |> GHT.iter f;
gh |> GHT.map (fun _ -> representation_of_yojson % EQSys.G.to_yojson) |> GHT.iter f;
Hashtbl.to_list tbl

let dot_of_fundec (fd : Cil.fundec) =
Expand Down

0 comments on commit 3f4a3cd

Please sign in to comment.