aboutsummaryrefslogtreecommitdiffstats
path: root/backend/Constprop.v
diff options
context:
space:
mode:
Diffstat (limited to 'backend/Constprop.v')
-rw-r--r--backend/Constprop.v3
1 files changed, 2 insertions, 1 deletions
diff --git a/backend/Constprop.v b/backend/Constprop.v
index 0be9438c..a3e432c0 100644
--- a/backend/Constprop.v
+++ b/backend/Constprop.v
@@ -247,7 +247,8 @@ Definition transf_function (rm: romem) (f: function) : function :=
f.(fn_params)
f.(fn_stacksize)
(PTree.map (transf_instr f an rm) f.(fn_code))
- f.(fn_entrypoint).
+ f.(fn_entrypoint)
+ (mkuntrustedanalysis None None).
Definition transf_fundef (rm: romem) (fd: fundef) : fundef :=
AST.transf_fundef (transf_function rm) fd.