aboutsummaryrefslogtreecommitdiffstats
path: root/debug/DebugInit.ml
diff options
context:
space:
mode:
authorBernhard Schommer <bernhardschommer@gmail.com>2015-10-04 22:17:45 +0200
committerBernhard Schommer <bernhardschommer@gmail.com>2015-10-04 22:17:45 +0200
commit8df444cbc4aa78d4effb03474b3709925ac7002a (patch)
treee251cf6733b0cf38ee125d649331687b829fe67a /debug/DebugInit.ml
parent1b989dc9bff4a6425a929a5638362ca87edb122d (diff)
parent5493186b185143b8cea401fbbbf417d37ae7e665 (diff)
downloadcompcert-8df444cbc4aa78d4effb03474b3709925ac7002a.tar.gz
compcert-8df444cbc4aa78d4effb03474b3709925ac7002a.zip
Merge branch 'master' of github.com:AbsInt/CompCert
Diffstat (limited to 'debug/DebugInit.ml')
-rw-r--r--debug/DebugInit.ml5
1 files changed, 4 insertions, 1 deletions
diff --git a/debug/DebugInit.ml b/debug/DebugInit.ml
index 5aac6566..7ee56ff1 100644
--- a/debug/DebugInit.ml
+++ b/debug/DebugInit.ml
@@ -48,7 +48,8 @@ let init_debug () =
implem.atom_parameter <- DebugInformation.atom_parameter;
implem.add_compilation_section_start <- DebugInformation.add_compilation_section_start;
implem.add_compilation_section_end <- DebugInformation.add_compilation_section_end;
- implem.compute_file_enum <- DebugInformation.compute_file_enum;
+ implem.compute_diab_file_enum <- DebugInformation.compute_diab_file_enum;
+ implem.compute_gnu_file_enum <- DebugInformation.compute_gnu_file_enum;
implem.exists_section <- DebugInformation.exists_section;
implem.remove_unused <- DebugInformation.remove_unused;
implem.variable_printed <- DebugInformation.variable_printed;
@@ -80,6 +81,8 @@ let init_none () =
implem.atom_parameter <- (fun _ _ _ -> ());
implem.add_compilation_section_start <- (fun _ _ -> ());
implem.add_compilation_section_end <- (fun _ _ -> ());
+ implem.compute_diab_file_enum <- (fun _ _ _ -> ());
+ implem.compute_gnu_file_enum <- (fun _ -> ());
implem.exists_section <- (fun _ -> true);
implem.remove_unused <- (fun _ -> ());
implem.variable_printed <- (fun _ -> ());