From d3a8a8870050810a7bc3fb5e004059197ec364f8 Mon Sep 17 00:00:00 2001 From: David Monniaux Date: Wed, 8 Apr 2020 13:06:00 +0200 Subject: print hashes --- mppa_k1c/TargetPrinter.ml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'mppa_k1c/TargetPrinter.ml') diff --git a/mppa_k1c/TargetPrinter.ml b/mppa_k1c/TargetPrinter.ml index 491d2c14..eb2d7a97 100644 --- a/mppa_k1c/TargetPrinter.ml +++ b/mppa_k1c/TargetPrinter.ml @@ -329,8 +329,8 @@ module Target (*: TARGET*) = print_inline_asm preg_asm oc (camlstring_of_coqstring txt) sg args res; fprintf oc "%s end inline assembly\n" comment | EF_profiling(id, kind) -> - fprintf oc "%s profiling %LX %d\n" comment - (Z.to_int64 id) (Z.to_int kind) + fprintf oc "%s profiling %a %d\n" comment + Profilingaux.pp_id id (Z.to_int kind) | _ -> assert false end -- cgit