Skip to content

Commit

Permalink
crucible-llvm: Unnecessary parens
Browse files Browse the repository at this point in the history
  • Loading branch information
langston-barrett committed Mar 27, 2024
1 parent b168cb1 commit a7bbd5d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crucible-llvm/src/Lang/Crucible/LLVM/Intrinsics/Cast.hs
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,8 @@ castLLVMArgs :: forall p sym ext bak args args'.
castLLVMArgs _ Ctx.Empty Ctx.Empty =
Right (ArgCast (\_ -> return Ctx.Empty))
castLLVMArgs bak (rest' Ctx.:> tp') (rest Ctx.:> tp) =
do (ValCast f) <- castLLVMRet bak tp tp'
(ArgCast fs) <- castLLVMArgs bak rest' rest
do ValCast f <- castLLVMRet bak tp tp'
ArgCast fs <- castLLVMArgs bak rest' rest
Right (ArgCast
(\(xs Ctx.:> x) -> do
xs' <- fs xs
Expand Down

0 comments on commit a7bbd5d

Please sign in to comment.