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

Merge branch 'fix/kernel/ghost-builtins' into 'master'

[kernel] Allows calling builtins Frama_C_show_each & cie in ghost code.

See merge request frama-c/frama-c!2962
parents 52b1d260 db174272
No related branches found
No related tags found
No related merge requests found
...@@ -172,16 +172,17 @@ class visitor = object(self) ...@@ -172,16 +172,17 @@ class visitor = object(self)
| { enode = Lval ( (Var vi), NoOffset ) } -> Some vi | { enode = Lval ( (Var vi), NoOffset ) } -> Some vi
| _ -> None | _ -> None
in in
let is_ghost vi = vi.vghost || Ast_info.is_frama_c_builtin vi.vname in
let failed = match i with let failed = match i with
| Call(_, fexp, _, _) -> | Call(_, fexp, _, _) ->
begin match call_varinfo fexp with begin match call_varinfo fexp with
| Some fct when not fct.vghost -> | Some fct when not (is_ghost fct) ->
Error.non_ghost_function_call_in_ghost ~current:true () ; true Error.non_ghost_function_call_in_ghost ~current:true () ; true
| None -> | None ->
Error.function_pointer_call ~current:true () ; true Error.function_pointer_call ~current:true () ; true
| _ -> false | _ -> false
end end
| Local_init(_, ConsInit(fct, _, _), _) when not fct.vghost -> | Local_init(_, ConsInit(fct, _, _), _) when not (is_ghost fct) ->
Error.non_ghost_function_call_in_ghost ~current:true () ; true Error.non_ghost_function_call_in_ghost ~current:true () ; true
| _ -> false | _ -> false
in in
......
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