Skip to content

Commit 488835e

Browse files
committed
wip nested regions
1 parent 31a02c6 commit 488835e

File tree

2 files changed

+232
-68
lines changed

2 files changed

+232
-68
lines changed

gibbon-compiler/src/Gibbon/Passes/Codegen.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1754,7 +1754,7 @@ makeName' FloatTy = "GibFloat"
17541754
makeName' SymTy = "GibSym"
17551755
makeName' BoolTy = "GibBool"
17561756
makeName' CursorTy = "GibCursor"
1757-
makeName' (CursorArrayTy{}) = "GibCursorPtr"
1757+
makeName' (CursorArrayTy sz) = "GibCursorPtr" ++ show sz
17581758
makeName' (MutCursorTy) = "GibMutCursor"
17591759
makeName' TagTyPacked = "GibPackedTag"
17601760
makeName' TagTyBoxed = "GibBoxedTag"

0 commit comments

Comments
 (0)