[inferbo] Remove deadcode

Reviewed By: mbouaziz

Differential Revision: D13463856

fbshipit-source-id: f6a9c4328
master
Sungkeun Cho 6 years ago committed by Facebook Github Bot
parent af6e4ff9d1
commit 879f8d6fe8

@ -125,8 +125,6 @@ let offsetof : t -> Itv.t = fun a -> fold (fun _ arr -> Itv.join arr.ArrInfo.off
let sizeof : t -> Itv.t = fun a -> fold (fun _ arr -> Itv.join arr.ArrInfo.size) a Itv.bot
let strideof : t -> Itv.t = fun a -> fold (fun _ arr -> Itv.join arr.ArrInfo.stride) a Itv.bot
let sizeof_byte : t -> Itv.t =
fun a -> fold (fun _ arr -> Itv.join (Itv.mult arr.ArrInfo.size arr.ArrInfo.stride)) a Itv.bot

@ -440,10 +440,6 @@ module Bound = struct
let is_const : t -> bool = function Linear (_, se) -> SymLinear.is_zero se | _ -> false
let eq_const : Z.t -> t -> bool =
fun z -> function Linear (z', se) -> SymLinear.is_zero se && Z.(equal z' z) | _ -> false
let neg : t -> t = function
| MInf ->
PInf

@ -83,8 +83,6 @@ module Bound : sig
val is_const : t -> Z.t sexp_option
val eq_const : Z.t -> t -> bool
val plus_l : t -> t -> t
val plus_u : t -> t -> t

@ -147,8 +147,6 @@ module ItvPure = struct
None
let eq_const : Z.t -> t -> bool = fun z (l, u) -> Bound.eq_const z l && Bound.eq_const z u
let is_zero : t -> bool = fun (l, u) -> Bound.is_zero l && Bound.is_zero u
let is_one : t -> bool = fun (l, u) -> Bound.eq l Bound.one && Bound.eq u Bound.one
@ -563,8 +561,6 @@ let is_one = bind1bool ItvPure.is_one
let is_mone = bind1bool ItvPure.is_mone
let eq_const : Z.t -> t -> bool = fun z -> bind1bool (ItvPure.eq_const z)
let neg : t -> t = lift1 ItvPure.neg
let lnot : t -> Boolean.t = bind1b ItvPure.lnot

@ -141,8 +141,6 @@ val is_one : t -> bool
val is_mone : t -> bool
val eq_const : Z.t -> t -> bool
val lb : t -> Bound.t
val ub : t -> Bound.t

Loading…
Cancel
Save