From 91e9202e6317ab3edd22562d659255d63a3fe65d Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Tue, 20 Oct 2020 18:44:59 +0100 Subject: Finish implementing scheduling and add top level export --- src/extraction/Extraction.v | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/extraction/Extraction.v') diff --git a/src/extraction/Extraction.v b/src/extraction/Extraction.v index 6fc8545..f7131b0 100644 --- a/src/extraction/Extraction.v +++ b/src/extraction/Extraction.v @@ -21,7 +21,8 @@ From vericert Require Value Compiler RTLBlockgen - RTLBlock. + RTLBlock + HTLSchedulegen. From Coq Require DecidableClass. @@ -168,6 +169,7 @@ Extract Inlined Constant Binary.round_mode => "fun _ -> assert false". Extract Inlined Constant Bracket.inbetween_loc => "fun _ -> assert false". Extract Constant RTLBlockgen.partition => "Partition.partition". +Extract Constant HTLSchedulegen.transl_module => "Schedule.transl_module". (* Needed in Coq 8.4 to avoid problems with Function definitions. *) Set Extraction AccessOpaque. -- cgit