summaryrefslogtreecommitdiff
path: root/src/CfimAst.ml
diff options
context:
space:
mode:
authorSon Ho2022-01-05 09:03:21 +0100
committerSon Ho2022-01-05 09:03:21 +0100
commit882f7840d9a110cfc138fe376447783d63118223 (patch)
treee2b9e2355949826c1ae5019bd192d0cc774c52bb /src/CfimAst.ml
parentd7ac73c207461559f55623e8ff61d2bb7e5cf982 (diff)
Implement the symbolic case of copy_value
Diffstat (limited to 'src/CfimAst.ml')
-rw-r--r--src/CfimAst.ml6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/CfimAst.ml b/src/CfimAst.ml
index 6c9b596e..250cd223 100644
--- a/src/CfimAst.ml
+++ b/src/CfimAst.ml
@@ -86,9 +86,9 @@ type fun_def = {
body : statement;
}
[@@deriving show]
-(** TODO: the type and function definitions contain information like `divergent`
- * or `copyable`. I wonder if this information should be stored directly inside
- * the definitions or inside separate maps/sets.
+(** TODO: function definitions (and maybe type definitions in the future)
+ * contain information like `divergent`. I wonder if this information should
+ * be stored directly inside the definitions or inside separate maps/sets.
* Of course, if everything is stored in separate maps/sets, nothing
* prevents us from computing this info in Charon (and thus exporting directly
* it with the type/function defs), in which case we just have to implement special