diff options
| author | Pierre-Marie Pédrot | 2017-08-29 15:19:30 +0200 |
|---|---|---|
| committer | Pierre-Marie Pédrot | 2017-08-29 15:19:30 +0200 |
| commit | f6154c8a086faee725b4f41fb4b2586d7cb6c51d (patch) | |
| tree | a0a1014646eb817b765b8262980f1bd06a8b2e0c /src/tac2env.ml | |
| parent | 9f79d601c0863d5144fc07c5cea0e03ef41d244b (diff) | |
Removing dead code for handling of array litterals.
Diffstat (limited to 'src/tac2env.ml')
| -rw-r--r-- | src/tac2env.ml | 2 |
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") |
