Skip to content

Commit

Permalink
Merge pull request #621 from GaloisInc/update-deps
Browse files Browse the repository at this point in the history
Update saw-core version; adapt to changed type of NatLit constructor.
  • Loading branch information
brianhuffman authored Jan 6, 2020
2 parents 0c0fabb + b4dd85c commit 74ddfaf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/SAWScript/Interpreter.hs
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ typedTermOfString :: String -> TypedTerm
typedTermOfString cs = TypedTerm schema trm
where
nat :: Integer -> Term
nat n = Unshared (FTermF (NatLit n))
nat n = Unshared (FTermF (NatLit (fromInteger n)))
bvNat :: Term
bvNat = Unshared (FTermF (GlobalDef "Prelude.bvNat"))
bvNat8 :: Term
Expand Down

0 comments on commit 74ddfaf

Please sign in to comment.