Skip to content

Commit

Permalink
Allow 64-bit base for symbolic address
Browse files Browse the repository at this point in the history
  • Loading branch information
yanxx297 committed Aug 7, 2018
1 parent 6e2b309 commit 6fc38a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion execution/sym_region_frag_machine.ml
Expand Up @@ -444,7 +444,7 @@ struct
| V.Lval(V.Temp(var)) ->
FormMan.if_expr_temp form_man var
(fun e' -> loop e') [e] (fun v -> ())
| V.Constant(V.Int(V.REG_32, n)) ->
| V.Constant(V.Int((V.REG_32|V.REG_64), n)) ->
constants := Int64.add !constants n;
[]
| e -> [e]
Expand Down

0 comments on commit 6fc38a6

Please sign in to comment.