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

Ignore assertion in GenC phase

parent 47fc0279
No related branches found
No related tags found
No related merge requests found
......@@ -402,8 +402,9 @@ class CConverter(val ctx: LeonContext, val prog: Program) {
case BVLShiftRight(lhs, rhs) => fatalError("operator >>> not supported")
// Ignore assertions for now
case Ensuring(body, _) => convert(body)
case Require(_, body) => convert(body)
case Ensuring(body, _) => convert(body)
case Require(_, body) => convert(body)
case Assert(_, _, body) => convert(body)
case IfExpr(cond1, thn1, elze1) =>
val condF = convertAndFlatten(cond1)
......
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