Skip to content
Snippets Groups Projects
Commit f8526c77 authored by Kostyantyn Vorobyov's avatar Kostyantyn Vorobyov
Browse files

Renamed: empty -> is_empty

parent 18768a6a
No related branches found
No related tags found
No related merge requests found
......@@ -51,7 +51,7 @@ let reset () =
Stmt.Hashtbl.reset exit_context;
Stmt.Hashtbl.reset labelled_jumps
let empty () =
let is_empty () =
Stmt.Hashtbl.length statement_locals = 0 &&
Stmt.Hashtbl.length exit_context = 0 &&
Stmt.Hashtbl.length labelled_jumps = 0
......@@ -132,5 +132,5 @@ class jump_context = object (self)
end
let generate fct =
assert (empty ());
assert (is_empty ());
let _ = Cil.visitCilFunction (new jump_context :> Cil.cilVisitor) fct in ()
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