Skip to content
Snippets Groups Projects
Commit b146043f authored by Marco Antognini's avatar Marco Antognini Committed by Etienne Kneuss
Browse files

Fix CConverter w.r.t. the updated FunDef type

see commit 7f17d218
parent 1586b80f
No related branches found
No related tags found
No related merge requests found
......@@ -233,8 +233,8 @@ class CConverter(val ctx: LeonContext, val prog: Program) {
case Let(b, v, r) => buildLet(b, v, r, false)
case LetVar(b, v, r) => buildLet(b, v, r, true)
case LetDef(fd, rest) =>
convertToFun(fd) // The function get registered there
case LetDef(fds, rest) =>
fds foreach convertToFun // The functions get registered there
convertToStmt(rest)
case Assignment(varId, expr) =>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment