diff --git a/src/plugins/e-acsl/doc/Changelog b/src/plugins/e-acsl/doc/Changelog index 9d22701682e7afc273595c169b8368b86984744a..f16e51a4b5f8b84f550f2ff910bba1c87eab9ee3 100644 --- a/src/plugins/e-acsl/doc/Changelog +++ b/src/plugins/e-acsl/doc/Changelog @@ -15,6 +15,8 @@ # E-ACSL: the Whole E-ACSL plug-in ############################################################################### +-* E-ACSL [2014/03/26] Fix bug #1692 about wrong localisation of + some messages. - E-ACSL [2014/03/26] Remove a spurious warning when an annotated function is first declared, then defined. -* E-ACSL [2014/03/25] Fix bug #1716 with annotations in while(1). diff --git a/src/plugins/e-acsl/typing.ml b/src/plugins/e-acsl/typing.ml index dee58a68684c8132a56bc0bf2ea2c4c4a9436464..a1a41887cdc0abe9cc216bced4cb5d31d0ec0896 100644 --- a/src/plugins/e-acsl/typing.ml +++ b/src/plugins/e-acsl/typing.ml @@ -164,6 +164,7 @@ module Term_env = Make_env(Term)(struct type t = eacsl_typ * eacsl_typ end) module Logic_var_env = Make_env(Logic_var)(struct type t = eacsl_typ end) let generic_typ (which: < f: 'a. 'a * 'a -> 'a >) t = + Cil.CurrentLoc.set t.term_loc; if Options.Gmp_only.get () then let ty = match t.term_type with | Linteger -> Mpz.t () @@ -241,6 +242,7 @@ let type_of_indexed_host = function | _ -> assert false let rec type_term t = + Cil.CurrentLoc.set t.term_loc; let lty = t.term_type in let get_cty t = match t.term_type with Ctype ty -> ty | _ -> assert false in let dup f x = let y = f x in y, y in @@ -440,7 +442,9 @@ let compute_quantif_guards_ref (term * relation * logic_var * relation * term) list) ref = Extlib.mk_fun "compute_quantif_guards_ref" -let rec type_predicate_named p = match p.content with +let rec type_predicate_named p = + Cil.CurrentLoc.set p.loc; + match p.content with | Pfalse | Ptrue -> () | Papp _ -> Error.not_yet "logic function application" | Pseparated _ -> Error.not_yet "\\separated"