summaryrefslogtreecommitdiff
path: root/compiler/InterpreterExpressions.ml
diff options
context:
space:
mode:
authorSon Ho2023-11-21 12:15:37 +0100
committerSon Ho2023-11-21 12:15:37 +0100
commitf852e1a1334b7506c0baf366b9e75cd01b9c843e (patch)
treeb0cb53bbf9df65f9acd809765c96f0fec171cf04 /compiler/InterpreterExpressions.ml
parent753f7e72f87f5282aee60ad5ada47efeb42625e9 (diff)
Rename PrimitiveValues to Values
Diffstat (limited to 'compiler/InterpreterExpressions.ml')
-rw-r--r--compiler/InterpreterExpressions.ml3
1 files changed, 1 insertions, 2 deletions
diff --git a/compiler/InterpreterExpressions.ml b/compiler/InterpreterExpressions.ml
index 38620be0..cc0580be 100644
--- a/compiler/InterpreterExpressions.ml
+++ b/compiler/InterpreterExpressions.ml
@@ -1,4 +1,3 @@
-open PrimitiveValues
open Types
open Values
open LlbcAst
@@ -96,7 +95,7 @@ let literal_to_typed_value (ty : literal_type) (cv : literal) : typed_value =
log#ldebug
(lazy
("literal_to_typed_value:" ^ "\n- cv: "
- ^ Print.PrimitiveValues.literal_to_string cv));
+ ^ Print.Values.literal_to_string cv));
match (ty, cv) with
(* Scalar, boolean... *)
| TBool, VBool v -> { value = VLiteral (VBool v); ty = TLiteral ty }