Skip to content

Commit

Permalink
Merge pull request #282 from GaloisInc/vr/obsolete-formatting
Browse files Browse the repository at this point in the history
remove obsolete formatting
  • Loading branch information
Ptival authored Aug 11, 2023
2 parents cfd1362 + 9ed581f commit dfa74cd
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/Reopt/Events.hs
Original file line number Diff line number Diff line change
Expand Up @@ -380,24 +380,24 @@ printLogEvent event = do
case s of
Discovery ->
unlines $
[ printf " Block 0x%x: %s" (discErrorBlockAddr de) (show (discErrorMessage de))
[ printf "Block 0x%x: %s" (discErrorBlockAddr de) (show (discErrorMessage de))
| de <- e
]
++ [" Incomplete."]
++ ["Incomplete."]
InvariantInference ->
printf
" Block: 0x%x: %s"
"Block: 0x%x: %s"
(segoffWord64 (ruBlock e))
(ppRegisterUseErrorReason (ruReason e))
Recovery ->
printf
" Failed (0x%x:%d, %s): %s"
"Failed (0x%x:%d, %s): %s"
(segoffWord64 (recoverErrorBlock e))
(recoverErrorInsnIndex e)
(ppReoptErrorTag (recoverErrorTag e))
(recoverErrorMessage e)
AnnotationGeneration ->
printf " %s" e
printf "%s" e
ReoptFunStepLog _st _f msg ->
logStep msg
ReoptFunStepAllFinished _ _ ->
Expand Down

0 comments on commit dfa74cd

Please sign in to comment.