mirror of
https://github.com/GaloisInc/macaw.git
synced 2024-11-28 01:35:33 +03:00
Fix macaw-symbolic compile error.
This commit is contained in:
parent
5eaf2605ed
commit
3f9e470b84
@ -277,7 +277,8 @@ appToCrucible app = do
|
|||||||
M.BVShl w x y -> appAtom =<< C.BVShl w <$> v2c x <*> v2c y
|
M.BVShl w x y -> appAtom =<< C.BVShl w <$> v2c x <*> v2c y
|
||||||
M.BVShr w x y -> appAtom =<< C.BVLshr w <$> v2c x <*> v2c y
|
M.BVShr w x y -> appAtom =<< C.BVLshr w <$> v2c x <*> v2c y
|
||||||
M.BVSar w x y -> appAtom =<< C.BVAshr w <$> v2c x <*> v2c y
|
M.BVSar w x y -> appAtom =<< C.BVAshr w <$> v2c x <*> v2c y
|
||||||
M.UadcOverflows w x y c -> do
|
M.UadcOverflows x y c -> do
|
||||||
|
let w = M.typeWidth x
|
||||||
let w' = incNat w
|
let w' = incNat w
|
||||||
x' <- zext1 w =<< v2c x
|
x' <- zext1 w =<< v2c x
|
||||||
y' <- zext1 w =<< v2c y
|
y' <- zext1 w =<< v2c y
|
||||||
|
Loading…
Reference in New Issue
Block a user