Skip to content

Commit

Permalink
Replace BigInt.shift_left with Z.shift_left
Browse files Browse the repository at this point in the history
  • Loading branch information
karoliineh committed Jan 15, 2024
1 parent 1d18891 commit 1b13207
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cdomain/value/cdomains/intDomain.ml
Original file line number Diff line number Diff line change
Expand Up @@ -2258,7 +2258,7 @@ struct
norm ik @@ lift2 shift_op_big_int ik x y

let shift_left =
shift BigInt.shift_left
shift Z.shift_left

let shift_right =
shift BigInt.shift_right
Expand Down Expand Up @@ -2609,7 +2609,7 @@ module Enums : S with type int_t = BigInt.t = struct
lift2 shift_op_big_int ik x y)

let shift_left =
shift BigInt.shift_left
shift Z.shift_left

let shift_right =
shift BigInt.shift_right
Expand Down

0 comments on commit 1b13207

Please sign in to comment.