Skip to content

Commit 164241c

Browse files
committed
Haddock fails on commenting function args for record elements.
1 parent 9305587 commit 164241c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

uc-crux-llvm/src/UCCrux/LLVM/Run/Check.hs

+2-2
Original file line numberDiff line numberDiff line change
@@ -119,15 +119,15 @@ newtype CheckResult m arch (argTypes :: Ctx (FullType m)) =
119119
(forall sym.
120120
IsSymInterface sym =>
121121
sym ->
122-
-- | Pre-simulation memory
123122
PreSimulationMem sym ->
124-
-- | Arguments passed to the entry point
125123
Assignment (Shape m (SymValue sym arch)) argTypes ->
126124
Crux.CruxSimulationResult ->
127125
Sim.UCCruxSimulationResult m arch argTypes ->
128126
[SomeCheckedCalls m sym arch] ->
129127
r) ->
130128
r
129+
-- ^ The 'PreSimulationMem sym' parameter is the Pre-simulation memory.
130+
-- The 'Assignment' specifies the Arguments passed to the entry point.
131131
}
132132

133133
data SomeCheckResult m arch =

uc-crux-llvm/src/UCCrux/LLVM/Run/Simulate.hs

+2-2
Original file line numberDiff line numberDiff line change
@@ -163,11 +163,11 @@ data UCCruxSimulationResult m arch (argTypes :: Ctx (FullType m)) = UCCruxSimula
163163
data SimulatorHooks sym m arch (argTypes :: Ctx (FullType m)) r =
164164
SimulatorHooks
165165
{ createOverrideHooks :: [SymCreateOverrideFn sym arch]
166+
-- | The 'PreSimulationMem sym' parameter is the Pre-simulation memory.
167+
-- The 'Assignment' specifies the Arguments passed to the entry point.
166168
, resultHook ::
167169
sym ->
168-
-- | Pre-simulation memory
169170
PreSimulationMem sym ->
170-
-- | Arguments passed to the entry point
171171
Assignment (Shape m (SymValue sym arch)) argTypes ->
172172
Crux.CruxSimulationResult ->
173173
UCCruxSimulationResult m arch argTypes ->

0 commit comments

Comments
 (0)