We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f851d7 commit fcb4be7Copy full SHA for fcb4be7
gibbon-compiler/src/Gibbon/L1/GenSML.hs
@@ -389,7 +389,11 @@ printerTy1 ty1 d = case ty1 of
389
, "in ()"
390
]
391
where
392
- ppSub (i, x) = "val _ = " <> printerTy1 x ("x__" <> int i) <> "val _ = print \" \""
+ ppSub (i, x) = hsep
393
+ [ "val _ ="
394
+ , printerTy1 x $ "x__" <> int i
395
+ , "val _ = print \" \""
396
+ ]
397
SymDictTy _m_var _ut -> _
398
PackedTy s () -> "internal_print_" <> text s <> parens d
399
VectorTy ut ->
0 commit comments