Skip to content

Commit 2f5537a

Browse files
committed
Remove commented out code
1 parent 1dc2167 commit 2f5537a

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/cdomains/intDomain.ml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ struct
224224
end
225225

226226

227-
module IntDomLifter (I : S) (*: Z with type int_t = I.int_t and type t = 'a { v : I.t; ikind : ikind } *)=
227+
module IntDomLifter (I : S) =
228228
struct
229229
open Cil
230230
type int_t = I.int_t
@@ -446,7 +446,6 @@ module Std (B: sig
446446
let is_bot x = B.equal x (bot_of Cil.IInt) (* Here we assume that the representation of bottom is independent of the ikind
447447
This may be true for intdomain implementations, but not e.g. for IntDomLifter. *)
448448
let is_top_of ik x = B.equal x (top_of ik)
449-
(* let is_bot_of ik x = B.equal x (bot_of ik) *)
450449

451450
(* all output is based on B.short *)
452451
let pretty_f sh () x = text (sh Goblintutil.summary_length x)
@@ -456,8 +455,6 @@ module Std (B: sig
456455

457456
include StdTop (B)
458457
end
459-
(* include Std (struct type nonrec t = t let name = name let top = top let bot = bot let short = short end) *)
460-
461458

462459
module IntervalFunctor(Ints_t : IntOps.IntOps): S with type int_t = Ints_t.t and type t = (Ints_t.t * Ints_t.t) option =
463460
struct

0 commit comments

Comments
 (0)