Fix a haddock parse bug

This commit is contained in:
Tristan Ravitch 2018-01-08 22:50:53 -08:00
parent 9530bf97bb
commit 46a97a16b4

View File

@ -291,13 +291,13 @@ data AssignRhs (arch :: *) (f :: Type -> *) tp where
-> !(MemRepr tp)
-> AssignRhs arch f tp
-- | @CondReadMem tp cond addr v@ reads from memory at the given address if the
-- condition is true and returns the value if it false.
CondReadMem :: !(MemRepr tp)
-> !(f BoolType)
-> !(f (BVType (ArchAddrWidth arch)))
-> !(f tp)
-> AssignRhs arch f tp
-- ^ @CondReadMem tp cond addr v@ reads from memory at the given address if the
-- condition is true and returns the value if it false.
-- Call an architecture specific function that returns some result.
EvalArchFn :: !(ArchFn arch f tp)