From ee558407e59c6794daad70aab2e1e7794535367e Mon Sep 17 00:00:00 2001 From: Léo Gourdin Date: Mon, 17 May 2021 19:12:46 +0200 Subject: finishing RTLtoBTL --- scheduling/RTLtoBTL.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scheduling/RTLtoBTL.v') diff --git a/scheduling/RTLtoBTL.v b/scheduling/RTLtoBTL.v index 3617e691..e9319315 100644 --- a/scheduling/RTLtoBTL.v +++ b/scheduling/RTLtoBTL.v @@ -12,7 +12,7 @@ Local Open Scope error_monad_scope. Definition transf_function (f: RTL.function) : res BTL.function := let (tcte, dupmap) := rtl2btl f in let (tc, te) := tcte in - let f' := BTL.mkfunction (RTL.fn_sig f) (RTL.fn_params f) (RTL.fn_stacksize f) (expand_code tc) te in + let f' := BTL.mkfunction (RTL.fn_sig f) (RTL.fn_params f) (RTL.fn_stacksize f) tc te in do u <- verify_function dupmap f' f; OK f'. -- cgit