Skip to content

Commit

Permalink
crucible: Distinguish recursive and intrinsic types in pretty-printer
Browse files Browse the repository at this point in the history
  • Loading branch information
langston-barrett committed Feb 7, 2025
1 parent 1bff180 commit 1c3c37c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crucible/src/Lang/Crucible/Types.hs
Original file line number Diff line number Diff line change
Expand Up @@ -479,7 +479,7 @@ instance Pretty (TypeRepr tp) where
IntrinsicRepr name tys ->
parens (pretty (symbolRepr name) <+> prettyCtx tys)
RecursiveRepr name tys ->
parens (pretty (symbolRepr name) <+> prettyCtx tys)
parens ("Rec" <+> pretty (symbolRepr name) <+> prettyCtx tys)
FloatRepr f -> parens ("Float" <+> pretty f)
IEEEFloatRepr f -> parens ("IEEEFloat" <+> pretty f)
CharRepr -> "Char"
Expand Down

0 comments on commit 1c3c37c

Please sign in to comment.