aboutsummaryrefslogtreecommitdiffstats
path: root/backend/CSE2.v
diff options
context:
space:
mode:
Diffstat (limited to 'backend/CSE2.v')
-rw-r--r--backend/CSE2.v3
1 files changed, 2 insertions, 1 deletions
diff --git a/backend/CSE2.v b/backend/CSE2.v
index 3042645e..07895f0e 100644
--- a/backend/CSE2.v
+++ b/backend/CSE2.v
@@ -394,7 +394,8 @@ Definition transf_function (f: function) : function :=
fn_params := f.(fn_params);
fn_stacksize := f.(fn_stacksize);
fn_code := PTree.map (transf_instr (forward_map f)) f.(fn_code);
- fn_entrypoint := f.(fn_entrypoint) |}.
+ fn_entrypoint := f.(fn_entrypoint);
+ fn_untrusted_analysis := mkuntrustedanalysis None None |}.
Definition transf_fundef (fd: fundef) : fundef :=