summaryrefslogtreecommitdiff
path: root/asmcomp/linearize.ml
diff options
context:
space:
mode:
Diffstat (limited to 'asmcomp/linearize.ml')
-rw-r--r--asmcomp/linearize.ml6
1 files changed, 4 insertions, 2 deletions
diff --git a/asmcomp/linearize.ml b/asmcomp/linearize.ml
index a5c758823a..8a5411876a 100644
--- a/asmcomp/linearize.ml
+++ b/asmcomp/linearize.ml
@@ -54,7 +54,8 @@ let has_fallthrough = function
type fundecl =
{ fun_name: string;
fun_body: instruction;
- fun_fast: bool }
+ fun_fast: bool;
+ fun_dbg : Debuginfo.t }
(* Invert a test *)
@@ -264,4 +265,5 @@ let rec linear i n =
let fundecl f =
{ fun_name = f.Mach.fun_name;
fun_body = linear f.Mach.fun_body end_instr;
- fun_fast = f.Mach.fun_fast }
+ fun_fast = f.Mach.fun_fast;
+ fun_dbg = f.Mach.fun_dbg }