From 47a77e398dd3815a20622934cdeeb4f0e076f42b Mon Sep 17 00:00:00 2001 From: Bernhard Schommer Date: Fri, 6 Feb 2015 13:19:59 +0100 Subject: Changed the ia32 backend to the new Printer. --- backend/PrintAsmaux.ml | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'backend/PrintAsmaux.ml') diff --git a/backend/PrintAsmaux.ml b/backend/PrintAsmaux.ml index 381ef5df..8812d320 100644 --- a/backend/PrintAsmaux.ml +++ b/backend/PrintAsmaux.ml @@ -69,6 +69,11 @@ let float64_literals : (int * int64) list ref = ref [] let float32_literals : (int * int32) list ref = ref [] let jumptables : (int * label list) list ref = ref [] +let reset_constants () = + float64_literals := []; + float32_literals := []; + jumptables := [] + (* Variables used for the handling of varargs *) let current_function_stacksize = ref 0l -- cgit