From 76f48469c4b4ca49159dc736830cd806f8dbbf07 Mon Sep 17 00:00:00 2001 From: David Monniaux Date: Fri, 10 Apr 2020 14:57:37 +0200 Subject: fix write table --- backend/PrintAsmaux.ml | 1 - 1 file changed, 1 deletion(-) (limited to 'backend/PrintAsmaux.ml') diff --git a/backend/PrintAsmaux.ml b/backend/PrintAsmaux.ml index 153b9412..5a074867 100644 --- a/backend/PrintAsmaux.ml +++ b/backend/PrintAsmaux.ml @@ -365,7 +365,6 @@ let print_profiling finalizer_section print_profiling_stub oc = fprintf oc " .type %s, @function\n" profiling_write_table; fprintf oc " .size %s, . - %s\n" profiling_write_table profiling_write_table; fprintf oc " .section %s\n" finalizer_section; - fprintf oc " .align 8\n"; (if Archi.ptr64 then fprintf oc " .8byte %s\n" profiling_write_table else fprintf oc " .4byte %s\n" profiling_write_table) -- cgit