Skip to content

Commit

Permalink
llvm: Add a space to a error message (#1267)
Browse files Browse the repository at this point in the history
  • Loading branch information
langston-barrett authored Dec 4, 2024
1 parent 80df1aa commit 9dea59a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crucible-llvm/src/Lang/Crucible/LLVM/Intrinsics/Cast.hs
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ castLLVMRet fnm bak (LLVMPointerRepr w) (BVRepr w')
= let err =
AssertFailureSimError
"Found a pointer where a bitvector was expected"
("In the arguments or return value of" ++ Text.unpack (functionName fnm)) in
("In the arguments or return value of " ++ Text.unpack (functionName fnm)) in
Right (ValCast (liftIO . ptrToBv bak err))
castLLVMRet fnm bak (VectorRepr tp) (VectorRepr tp')
= do ValCast f <- castLLVMRet fnm bak tp tp'
Expand Down

0 comments on commit 9dea59a

Please sign in to comment.