Skip to content

Commit 73bb6a9

Browse files
authored
fix merge conflict
1 parent dcfe2aa commit 73bb6a9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Assembly/WithBedrock/Semantics.v

+1-1
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,7 @@ Definition DenoteNormalInstruction (st : machine_state) (instr : NormalInstructi
339339
if cnt =? 0 then Some st else
340340
if Z.of_N s <? cnt then Some (HavocFlags st) else
341341
let st := HavocFlagsFromResult s st l in
342-
let signchange := xorb (signed s hv <? 0)%Z (signed s v <? 0)%Z in
342+
let signchange := xorb (Z.signed s hv <? 0)%Z (Z.signed s v <? 0)%Z in
343343
(* Note: IA-32 SDM does not make it clear what sign change is in question *)
344344
let st := if cnt =? 1 then SetFlag st OF signchange else st in
345345
let st := SetFlag st CF (Z.testbit hv (Z.of_N s - cnt)) in

0 commit comments

Comments
 (0)