Skip to content
Snippets Groups Projects
Commit 01491b56 authored by David Bühler's avatar David Bühler Committed by Valentin Perrelle
Browse files

[kernel] Cil builder: insert a cast in assign instructions when needed.

When the right expression and the lvalue have different types, inserts a cast.
parent 44717fc5
No related branches found
No related tags found
No related merge requests found
...@@ -745,7 +745,10 @@ struct ...@@ -745,7 +745,10 @@ struct
| Skip -> | Skip ->
Cil_types.Skip (loc) Cil_types.Skip (loc)
| Assign (dest,src) -> | Assign (dest,src) ->
Cil_types.Set (build_lval ~loc dest, build_exp ~loc src, loc) let dest' = build_lval ~loc dest
and src' = build_exp ~loc src in
let src' = Cil.mkCast ~newt:(Cil.typeOfLval dest') src' in
Cil_types.Set (dest', src', loc)
| Call (dest,callee,args) -> | Call (dest,callee,args) ->
let dest' = Option.map (build_lval ~loc) dest let dest' = Option.map (build_lval ~loc) dest
and callee' = build_exp ~loc callee and callee' = build_exp ~loc callee
......
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