aboutsummaryrefslogtreecommitdiff
path: root/src/tac2env.ml
diff options
context:
space:
mode:
authorPierre-Marie Pédrot2017-08-29 15:19:30 +0200
committerPierre-Marie Pédrot2017-08-29 15:19:30 +0200
commitf6154c8a086faee725b4f41fb4b2586d7cb6c51d (patch)
treea0a1014646eb817b765b8262980f1bd06a8b2e0c /src/tac2env.ml
parent9f79d601c0863d5144fc07c5cea0e03ef41d244b (diff)
Removing dead code for handling of array litterals.
Diffstat (limited to 'src/tac2env.ml')
-rw-r--r--src/tac2env.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tac2env.ml b/src/tac2env.ml
index 59344e336b..dd8a07ffc6 100644
--- a/src/tac2env.ml
+++ b/src/tac2env.ml
@@ -65,7 +65,7 @@ let rec eval_pure = function
| GTacCst (_, n, []) -> ValInt n
| GTacCst (_, n, el) -> ValBlk (n, Array.map_of_list eval_pure el)
| GTacOpn (kn, el) -> ValOpn (kn, Array.map_of_list eval_pure el)
-| GTacAtm (AtmStr _) | GTacArr _ | GTacLet _ | GTacVar _ | GTacSet _
+| GTacAtm (AtmStr _) | GTacLet _ | GTacVar _ | GTacSet _
| GTacApp _ | GTacCse _ | GTacPrj _ | GTacPrm _ | GTacExt _ | GTacWth _ ->
anomaly (Pp.str "Term is not a syntactical value")