Skip to content
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
6 changes: 3 additions & 3 deletions lib/Language/ASL.hs
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ simulateFunction symCfg crucFunc = genSimulation symCfg crucFunc extractResult
(CS.regValue re)
WI.NeverUnfold
checkClosedTerm allArgBvs (CS.regValue re)

return $ fn
| otherwise -> X.throwIO (UnexpectedReturnType btr)

Expand Down Expand Up @@ -398,7 +398,7 @@ data SimulationException = SimulationTimeout (Some AC.SomeFunctionSignature)

instance PP.Pretty SimulationException where
pPrint e = case e of

SimulationTimeout (Some fs) -> PP.text "SimulationTimeout:" PP.<+> PP.text (show fs)
SimulationAbort (Some fs) msg ->
PP.text "SimulationAbort:" PP.<+> PP.text (T.unpack msg) PP.<+> PP.text (show fs)
Expand Down Expand Up @@ -428,7 +428,7 @@ showExpr e = PP.text (LPP.renderString (LPP.layoutPretty opts (WI.printSymExpr e
showAbortedResult :: CS.AbortedResult c d -> T.Text
showAbortedResult ar = case ar of
CS.AbortedExec reason _ -> T.pack $ show reason
CS.AbortedExit code -> T.pack $ show code
CS.AbortedExit code _ -> T.pack $ show code
CS.AbortedBranch _ _ res' res'' -> "BRANCH: " <> showAbortedResult res' <> "\n" <> showAbortedResult res''


Expand Down
2 changes: 1 addition & 1 deletion submodules/crucible
Submodule crucible updated 2726 files
Loading