Skip to content

Commit 51637f3

Browse files
committed
Fix inconsistent use of qualified idents.
1 parent 4907eba commit 51637f3

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

src/cfg.mli

+4-7
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,6 @@
44
This is required for several other extensions, such as {!Dataflow}.
55
*)
66

7-
open Cil
8-
9-
107
(** Compute the CFG for an entire file, by calling cfgFun on each function. *)
118
val computeFileCFG: Cil.file -> unit
129

@@ -15,19 +12,19 @@ val clearFileCFG: Cil.file -> unit
1512

1613
(** Compute a control flow graph for fd. Stmts in fd have preds and succs
1714
filled in *)
18-
val cfgFun : fundec -> int
15+
val cfgFun : Cil.fundec -> int
1916

2017
(** clear the sid, succs, and preds fields of each statment in a function *)
2118
val clearCFGinfo: Cil.fundec -> unit
2219

2320
(** print control flow graph (in dot form) for fundec to channel *)
24-
val printCfgChannel : out_channel -> fundec -> unit
21+
val printCfgChannel : out_channel -> Cil.fundec -> unit
2522

2623
(** Print control flow graph (in dot form) for fundec to file *)
27-
val printCfgFilename : string -> fundec -> unit
24+
val printCfgFilename : string -> Cil.fundec -> unit
2825

2926
(** Next statement id that will be assigned. *)
3027
val start_id: int ref
3128

3229
(** Return all statements in a file - valid after computeFileCfg only *)
33-
val allStmts : file -> stmt list
30+
val allStmts : Cil.file -> Cil.stmt list

0 commit comments

Comments
 (0)