aboutsummaryrefslogtreecommitdiffstats
path: root/debug/Debug.mli
diff options
context:
space:
mode:
authorBernhard Schommer <bernhardschommer@gmail.com>2015-10-01 12:19:16 +0200
committerBernhard Schommer <bernhardschommer@gmail.com>2015-10-01 12:19:16 +0200
commiteaf4bab84af4b3db1ca9c6785ed803bbbd61b9a7 (patch)
treef6233fc2272d6495ec22afafd5ef5534ba32df44 /debug/Debug.mli
parent06a1a35d759dc780e389218b5f78ce3415d4b3cd (diff)
downloadcompcert-kvx-eaf4bab84af4b3db1ca9c6785ed803bbbd61b9a7.tar.gz
compcert-kvx-eaf4bab84af4b3db1ca9c6785ed803bbbd61b9a7.zip
Only print locations for symbols that are present in the assembler.
Diffstat (limited to 'debug/Debug.mli')
-rw-r--r--debug/Debug.mli2
1 files changed, 2 insertions, 0 deletions
diff --git a/debug/Debug.mli b/debug/Debug.mli
index 4677fdf8..a1b4408d 100644
--- a/debug/Debug.mli
+++ b/debug/Debug.mli
@@ -47,6 +47,7 @@ type implem =
mutable compute_file_enum: (string -> int) -> (string-> int) -> (unit -> unit) -> unit;
mutable exists_section: string -> bool;
mutable remove_unused: ident -> unit;
+ mutable variable_printed: string -> unit;
}
val implem: implem
@@ -78,3 +79,4 @@ val add_compilation_section_start: string -> (int * int * int * string) -> unit
val compute_file_enum: (string -> int) -> (string-> int) -> (unit -> unit) -> unit
val exists_section: string -> bool
val remove_unused: ident -> unit
+val variable_printed: string -> unit