summaryrefslogtreecommitdiff
path: root/src/jib/anf.ml
diff options
context:
space:
mode:
Diffstat (limited to 'src/jib/anf.ml')
-rw-r--r--src/jib/anf.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jib/anf.ml b/src/jib/anf.ml
index 787d5b17..bd4813ed 100644
--- a/src/jib/anf.ml
+++ b/src/jib/anf.ml
@@ -578,7 +578,7 @@ let rec anf (E_aux (e_aux, ((l, _) as exp_annot)) as exp) =
raise (Reporting.err_unreachable l __POS__
("Encountered complex l-expression " ^ string_of_lexp lexp ^ " when converting to ANF"))
- | E_loop (loop_typ, cond, exp) ->
+ | E_loop (loop_typ, _, cond, exp) ->
let acond = anf cond in
let aexp = anf exp in
mk_aexp (AE_loop (loop_typ, acond, aexp))