Internal error for unknown clocks.

This commit is contained in:
Adrien Guatto 2012-03-02 17:11:50 +01:00
parent 3b0ebf2dbf
commit 44d3a639e5
1 changed files with 6 additions and 1 deletions

View File

@ -56,7 +56,12 @@ let error_message loc = function
let ck_of_name h x =
if is_reset x
then fresh_clock()
else Env.find x h
else
try Env.find x h
with Not_found ->
(* Format.eprintf "looking for %a/%d@." print_ident x x.num; *)
(* Env.iter (fun k ck -> Format.eprintf "%a/%d => %a@." print_ident k k.num print_ck ck) h; *)
Misc.internal_error ("clocking: unknown clock name " ^ name x)
let rec typing_extvalue h w =
let ck = match w.w_desc with