aboutsummaryrefslogtreecommitdiffstats
path: root/backend/PrintAsm.ml
diff options
context:
space:
mode:
Diffstat (limited to 'backend/PrintAsm.ml')
-rw-r--r--backend/PrintAsm.ml4
1 files changed, 3 insertions, 1 deletions
diff --git a/backend/PrintAsm.ml b/backend/PrintAsm.ml
index 1f100b7e..0e9eadcb 100644
--- a/backend/PrintAsm.ml
+++ b/backend/PrintAsm.ml
@@ -102,7 +102,9 @@ module Printer(Target:TARGET) =
let print_globdef oc (name,gdef) =
match gdef with
- | Gfun (Internal code) -> print_function oc name code
+ | Gfun (Internal code) ->
+ if not (C2C.atom_is_iso_inline_definition name) then
+ print_function oc name code
| Gfun (External ef) -> ()
| Gvar v -> print_var oc name v