Skip to content

Commit

Permalink
Merge pull request #944 from GaloisInc/uc-crux-haddock
Browse files Browse the repository at this point in the history
Haddock fails on commenting function args for record elements.
  • Loading branch information
kquick authored Jan 4, 2022
2 parents 9305587 + 164241c commit c6c9298
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
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

0 comments on commit c6c9298

Please sign in to comment.