aboutsummaryrefslogtreecommitdiffstats
path: root/debug/Debug.ml
diff options
context:
space:
mode:
authorBernhard Schommer <bernhardschommer@gmail.com>2015-10-01 14:27:35 +0200
committerBernhard Schommer <bernhardschommer@gmail.com>2015-10-01 14:27:35 +0200
commit886f5550616272d899745d62ec3076fb63a71054 (patch)
tree39f87466ddf1c3f3fa01878f26b07b77a2456a9f /debug/Debug.ml
parent36892f59ced6dd06d6a9cfc6e8af49db8721dd65 (diff)
downloadcompcert-kvx-886f5550616272d899745d62ec3076fb63a71054.tar.gz
compcert-kvx-886f5550616272d899745d62ec3076fb63a71054.zip
Use also fucntion id for local variables since atom is not unique.
Diffstat (limited to 'debug/Debug.ml')
-rw-r--r--debug/Debug.ml6
1 files changed, 3 insertions, 3 deletions
diff --git a/debug/Debug.ml b/debug/Debug.ml
index 30ff288f..6da0927d 100644
--- a/debug/Debug.ml
+++ b/debug/Debug.ml
@@ -39,9 +39,9 @@ type implem =
mutable add_lvar_scope: int -> ident -> int -> unit;
mutable open_scope: atom -> int -> positive -> unit;
mutable close_scope: atom -> int -> positive -> unit;
- mutable start_live_range: atom -> positive -> int * int builtin_arg -> unit;
- mutable end_live_range: atom -> positive -> unit;
- mutable stack_variable: atom -> int * int builtin_arg -> unit;
+ mutable start_live_range: (atom * atom) -> positive -> int * int builtin_arg -> unit;
+ mutable end_live_range: (atom * atom) -> positive -> unit;
+ mutable stack_variable: (atom * atom) -> int * int builtin_arg -> unit;
mutable function_end: atom -> positive -> unit;
mutable add_label: atom -> positive -> int -> unit;
mutable atom_parameter: ident -> ident -> atom -> unit;