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

[Eva] evast: fix a bug in constant folding where integer casts did not wrap their inputs

parent b483cc01
No related branches found
No related tags found
No related merge requests found
......@@ -131,7 +131,8 @@ let integer ?kind i = (* TODO: mathematical unbounded integer *)
then Cil_types.IInt
else Cil.intKindForValue i false
in
mk_exp (Const (CInt64 (i, kind, None)))
let i', _truncated = Cil.truncateInteger64 kind i in
mk_exp (Const (CInt64 (i', kind, None)))
let int ?kind i =
integer ?kind (Integer.of_int i)
......
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