Skip to content

Commit

Permalink
Provide a possible L3 translation for parallel tuples
Browse files Browse the repository at this point in the history
  • Loading branch information
jazullo committed Feb 16, 2024
1 parent 1bd31be commit 91ed31e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gibbon-compiler/src/Gibbon/Passes/DirectL3.hs
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ directL3 prg@(Prog ddfs fndefs mnExp) = do
in go env2 ex'
Ext (AddFixed{}) -> error "directL3: AddFixed not handled."
Ext (StartOfPkdCursor{}) -> error "directL3: StartOfPkdCursor not handled."
ParE{} -> error "directL3: todo ParE"
ParE e1 e2 -> ParE (go env2 e1) (go env2 e2)
MapE{} -> error "directL3: todo MapE"
FoldE{} -> error "directL3: todo FoldE"

Expand Down

0 comments on commit 91ed31e

Please sign in to comment.