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

Follows removed AST nodes in kernel

parent 4a5d8131
No related branches found
No related tags found
No related merge requests found
......@@ -203,7 +203,7 @@ let make_dynamic_modif_code name lvar =
let incinstr = Call (None, realloc, [arg; newsize], unkloc) in
let inc = Cil.mkStmtOneInstr ~ghost:true incinstr in
Cil.mkStmt ~ghost:true (If (cond, Cil.mkBlock [inc], Cil.mkBlock [], unkloc)));
(let addr = Cil.mkBinOp unkloc IndexPI (Cil.evar tabvar) (Cil.evar sizevar) in
(let addr = Cil.mkBinOp unkloc PlusPI (Cil.evar tabvar) (Cil.evar sizevar) in
let tabcell = Cil.mkMem addr NoOffset in
let value = Option.get lvar.lv_origin |> Cil.evar in
Cil.mkStmtOneInstr ~ghost:true (Set (tabcell, value, unkloc)));
......
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