diff options
author | Guillaume Boisseau | 2024-06-04 10:31:37 +0200 |
---|---|---|
committer | GitHub | 2024-06-04 10:31:37 +0200 |
commit | 4a31acdff7a5dfdc26bf25ad25bb8266b790f891 (patch) | |
tree | 06fd30cde129490abe2fb938ee5bb6ba97f81cb2 /compiler/InterpreterUtils.ml | |
parent | 170ce1c399d3ae6b2ff9485037eae4d89e7879f2 (diff) | |
parent | d53dcc06e69b6d607261781b4bfc09c52b737a91 (diff) |
Merge pull request #230 from W95Psp/follow-up-charon-pr-209
Diffstat (limited to '')
-rw-r--r-- | compiler/InterpreterUtils.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/InterpreterUtils.ml b/compiler/InterpreterUtils.ml index 653a0e24..f3f12906 100644 --- a/compiler/InterpreterUtils.ml +++ b/compiler/InterpreterUtils.ml @@ -291,7 +291,7 @@ let rvalue_get_place (rv : rvalue) : place option = match rv with | Use (Copy p | Move p) -> Some p | Use (Constant _) -> None - | RvRef (p, _) -> Some p + | Len (p, _, _) | RvRef (p, _) -> Some p | UnaryOp _ | BinaryOp _ | Global _ | Discriminant _ | Aggregate _ -> None (** See {!ValuesUtils.symbolic_value_has_borrows} *) |