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, 2 insertions, 2 deletions
diff --git a/backend/PrintAsm.ml b/backend/PrintAsm.ml
index 465b8791..3072bff3 100644
--- a/backend/PrintAsm.ml
+++ b/backend/PrintAsm.ml
@@ -23,8 +23,8 @@ module Printer(Target:TARGET) =
struct
let get_fun_addr name txt =
- let s = Target.new_label ()
- and e = Target.new_label () in
+ let s = new_label ()
+ and e = new_label () in
Debug.add_fun_addr name txt (e,s);
s,e