Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Haddock fails on commenting function args for record elements. #944

Merged
merged 1 commit into from
Jan 4, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions uc-crux-llvm/src/UCCrux/LLVM/Run/Check.hs
Original file line number Diff line number Diff line change
Expand Up @@ -119,15 +119,15 @@ newtype CheckResult m arch (argTypes :: Ctx (FullType m)) =
(forall sym.
IsSymInterface sym =>
sym ->
-- | Pre-simulation memory
PreSimulationMem sym ->
-- | Arguments passed to the entry point
Assignment (Shape m (SymValue sym arch)) argTypes ->
Crux.CruxSimulationResult ->
Sim.UCCruxSimulationResult m arch argTypes ->
[SomeCheckedCalls m sym arch] ->
r) ->
r
-- ^ The 'PreSimulationMem sym' parameter is the Pre-simulation memory.
-- The 'Assignment' specifies the Arguments passed to the entry point.
}

data SomeCheckResult m arch =
Expand Down
4 changes: 2 additions & 2 deletions uc-crux-llvm/src/UCCrux/LLVM/Run/Simulate.hs
Original file line number Diff line number Diff line change
Expand Up @@ -163,11 +163,11 @@ data UCCruxSimulationResult m arch (argTypes :: Ctx (FullType m)) = UCCruxSimula
data SimulatorHooks sym m arch (argTypes :: Ctx (FullType m)) r =
SimulatorHooks
{ createOverrideHooks :: [SymCreateOverrideFn sym arch]
-- | The 'PreSimulationMem sym' parameter is the Pre-simulation memory.
-- The 'Assignment' specifies the Arguments passed to the entry point.
, resultHook ::
sym ->
-- | Pre-simulation memory
PreSimulationMem sym ->
-- | Arguments passed to the entry point
Assignment (Shape m (SymValue sym arch)) argTypes ->
Crux.CruxSimulationResult ->
UCCruxSimulationResult m arch argTypes ->
Expand Down