Skip to content
Snippets Groups Projects
Commit 0b0ea507 authored by Allan Blanchard's avatar Allan Blanchard
Browse files

[wp] Fixes default assigns, warn on assigns everything

parent 8ccf2681
No related branches found
No related tags found
No related merge requests found
...@@ -228,11 +228,19 @@ let reverse_loop_contract l = { ...@@ -228,11 +228,19 @@ let reverse_loop_contract l = {
loop_assigns = List.rev l.loop_assigns ; loop_assigns = List.rev l.loop_assigns ;
} }
let default_assigns stmt l = {
l with
loop_assigns =
if l.loop_assigns <> [] then l.loop_assigns
else [WpPropId.mk_loop_any_assigns_info stmt]
}
let get_loop_contract kf stmt : loop_contract = let get_loop_contract kf stmt : loop_contract =
let labels = NormAtLabels.labels_loop stmt in let labels = NormAtLabels.labels_loop stmt in
let normalize_pred p = NormAtLabels.preproc_annot labels p in let normalize_pred p = NormAtLabels.preproc_annot labels p in
let normalize_annot (i,p) = i, normalize_pred p in let normalize_annot (i,p) = i, normalize_pred p in
let normalize_assigns w = NormAtLabels.preproc_assigns labels w in let normalize_assigns w = NormAtLabels.preproc_assigns labels w in
default_assigns stmt @@
reverse_loop_contract @@ reverse_loop_contract @@
Annotations.fold_code_annot Annotations.fold_code_annot
begin fun _emitter ca l -> begin fun _emitter ca l ->
......
...@@ -143,7 +143,10 @@ struct ...@@ -143,7 +143,10 @@ struct
let use_assigns env (a : assigns) w = let use_assigns env (a : assigns) w =
match a with match a with
| NoAssignsInfo -> assert false | NoAssignsInfo -> assert false
| AssignsAny ad -> W.use_assigns env.we None ad w | AssignsAny ad ->
Wp_parameters.warning ~current:true ~once:true
"Missing assigns clause (assigns 'everything' instead)" ;
W.use_assigns env.we None ad w
| AssignsLocations(ap,ad) -> W.use_assigns env.we (Some ap) ad w | AssignsLocations(ap,ad) -> W.use_assigns env.we (Some ap) ad w
let prove_assigns env (a : assigns) w = let prove_assigns env (a : assigns) w =
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment