aboutsummaryrefslogtreecommitdiffstats
path: root/backend/PrintAsm.ml
diff options
context:
space:
mode:
Diffstat (limited to 'backend/PrintAsm.ml')
-rw-r--r--backend/PrintAsm.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/PrintAsm.ml b/backend/PrintAsm.ml
index aa317a09..0860c1d4 100644
--- a/backend/PrintAsm.ml
+++ b/backend/PrintAsm.ml
@@ -39,7 +39,7 @@ let print_function oc name fn =
fprintf oc "%a:\n" symbol name;
print_location oc (C2C.atom_location name);
Target.cfi_startproc oc;
- Target.print_instructions oc fn.fn_code;
+ Target.print_instructions oc fn;
Target.cfi_endproc oc;
if Target.print_fun_info then
print_fun_info oc name;