From 88b98f00facde51bff705a3fb6c32a73937428cb Mon Sep 17 00:00:00 2001 From: xleroy Date: Sat, 25 Jul 2009 16:22:17 +0000 Subject: Use Extraction Blacklist git-svn-id: https://yquem.inria.fr/compcert/svn/compcert/trunk@1114 fca1b0fc-160b-0410-b1d3-a4f43f01ea2e --- extraction/extraction.v | 3 +++ 1 file changed, 3 insertions(+) (limited to 'extraction/extraction.v') diff --git a/extraction/extraction.v b/extraction/extraction.v index d74e192e..137ddb06 100644 --- a/extraction/extraction.v +++ b/extraction/extraction.v @@ -82,6 +82,9 @@ Extract Constant Asm.ireg_eq => "fun (x: ireg) (y: ireg) -> x = y". Extract Constant Asm.freg_eq => "fun (x: freg) (y: freg) -> x = y". Extract Constant Asm.preg_eq => "fun (x: preg) (y: preg) -> x = y". +(* Avoid name clashes *) +Extraction Blacklist List String Int. + (* Go! *) Cd "extraction". Recursive Extraction Library Compiler. -- cgit