Skip to content

Commit

Permalink
Reflect new type of readMem
Browse files Browse the repository at this point in the history
  • Loading branch information
chameco committed Aug 11, 2020
1 parent 86df2ea commit 89de457
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crucible-llvm/src/Lang/Crucible/LLVM/ArraySizeProfile.hs
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ ptrIsInitialized ::
C.LLVMPtr sym w ->
IO Bool
ptrIsInitialized sym mem ptr =
G.readMem sym C.PtrWidth ptr (C.bitvectorType 1) C.noAlignment mem >>= \case
G.readMem sym C.PtrWidth Nothing ptr (C.bitvectorType 1) C.noAlignment mem >>= \case
C.NoErr{} -> pure True
_ -> pure False

Expand Down

0 comments on commit 89de457

Please sign in to comment.