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

[dive] Removes unused record field context.focus.

parent 4d58ef78
No related branches found
No related tags found
No related merge requests found
...@@ -35,7 +35,6 @@ module Index = Datatype.Int.Hashtbl ...@@ -35,7 +35,6 @@ module Index = Datatype.Int.Hashtbl
module NodeTable = FCHashtbl.Make (NodeRef) module NodeTable = FCHashtbl.Make (NodeRef)
module NodeSet = Graph.Node.Set module NodeSet = Graph.Node.Set
module BaseSet = Cil_datatype.Varinfo.Set module BaseSet = Cil_datatype.Varinfo.Set
module FunctionMap = Kernel_function.Map
type t = { type t = {
mutable graph: Graph.t; mutable graph: Graph.t;
...@@ -43,7 +42,6 @@ type t = { ...@@ -43,7 +42,6 @@ type t = {
mutable node_table: node NodeTable.t; (* node_kind * callstack -> node *) mutable node_table: node NodeTable.t; (* node_kind * callstack -> node *)
mutable unfolded_bases: BaseSet.t; mutable unfolded_bases: BaseSet.t;
mutable hidden_bases: BaseSet.t; mutable hidden_bases: BaseSet.t;
mutable focus: bool FunctionMap.t;
mutable max_dep_fetch_count: int; mutable max_dep_fetch_count: int;
mutable roots: NodeSet.t; mutable roots: NodeSet.t;
mutable graph_diff: graph_diff; mutable graph_diff: graph_diff;
...@@ -60,7 +58,6 @@ let create () = ...@@ -60,7 +58,6 @@ let create () =
node_table = NodeTable.create 13; node_table = NodeTable.create 13;
unfolded_bases = BaseSet.empty; unfolded_bases = BaseSet.empty;
hidden_bases = BaseSet.empty; hidden_bases = BaseSet.empty;
focus = FunctionMap.empty;
max_dep_fetch_count = 10; max_dep_fetch_count = 10;
roots = NodeSet.empty; roots = NodeSet.empty;
graph_diff = { last_root = None ; added_nodes=[] ; removed_nodes=[] }; graph_diff = { last_root = None ; added_nodes=[] ; removed_nodes=[] };
...@@ -70,7 +67,6 @@ let clear context = ...@@ -70,7 +67,6 @@ let clear context =
context.graph <- Graph.create (); context.graph <- Graph.create ();
context.vertex_table <- Index.create 13; context.vertex_table <- Index.create 13;
context.node_table <- NodeTable.create 13; context.node_table <- NodeTable.create 13;
context.focus <- FunctionMap.empty;
context.max_dep_fetch_count <- 10; context.max_dep_fetch_count <- 10;
context.roots <- NodeSet.empty; context.roots <- NodeSet.empty;
context.graph_diff <- { last_root = None ; added_nodes=[] ; removed_nodes=[] } context.graph_diff <- { last_root = None ; added_nodes=[] ; removed_nodes=[] }
......
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