aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPierre-Marie Pédrot2017-08-24 17:34:55 +0200
committerPierre-Marie Pédrot2017-08-24 17:34:55 +0200
commit6a5558405f801c466a51f32080c8dbb893a2170d (patch)
treeea5f0b17a8af54b951201cafb082a91561f9dda1 /src
parenta3bef204ec2840b879c37b0b3ba43574a6550647 (diff)
Removing dead code about arrays in the AST.
Diffstat (limited to 'src')
-rw-r--r--src/tac2expr.mli1
-rw-r--r--src/tac2intern.ml15
2 files changed, 0 insertions, 16 deletions
diff --git a/src/tac2expr.mli b/src/tac2expr.mli
index 76fb50181f..281ed6c81e 100644
--- a/src/tac2expr.mli
+++ b/src/tac2expr.mli
@@ -98,7 +98,6 @@ type raw_tacexpr =
| CTacFun of Loc.t * (raw_patexpr * raw_typexpr option) list * raw_tacexpr
| CTacApp of Loc.t * raw_tacexpr * raw_tacexpr list
| CTacLet of Loc.t * rec_flag * (raw_patexpr * raw_typexpr option * raw_tacexpr) list * raw_tacexpr
-| CTacArr of raw_tacexpr list located
| CTacCnv of Loc.t * raw_tacexpr * raw_typexpr
| CTacSeq of Loc.t * raw_tacexpr * raw_tacexpr
| CTacCse of Loc.t * raw_tacexpr * raw_taccase list
diff --git a/src/tac2intern.ml b/src/tac2intern.ml
index 865935c52d..765be92103 100644
--- a/src/tac2intern.ml
+++ b/src/tac2intern.ml
@@ -194,7 +194,6 @@ let loc_of_tacexpr = function
| CTacFun (loc, _, _) -> loc
| CTacApp (loc, _, _) -> loc
| CTacLet (loc, _, _, _) -> loc
-| CTacArr (loc, _) -> Option.default dummy_loc loc
| CTacCnv (loc, _, _) -> loc
| CTacSeq (loc, _, _) -> loc
| CTacCse (loc, _, _) -> loc
@@ -726,14 +725,6 @@ let rec intern_rec env = function
let ids = List.fold_left fold Id.Set.empty el in
if is_rec then intern_let_rec env loc ids el e
else intern_let env loc ids el e
-| CTacArr (loc, []) ->
- let id = fresh_id env in
- (GTacArr [], GTypRef (Other t_int, [GTypVar id]))
-| CTacArr (loc, e0 :: el) ->
- let (e0, t0) = intern_rec env e0 in
- let fold e el = intern_rec_with_constraint env e t0 :: el in
- let el = e0 :: List.fold_right fold el [] in
- (GTacArr el, GTypRef (Other t_array, [t0]))
| CTacCnv (loc, e, tc) ->
let (e, t) = intern_rec env e in
let tc = intern_type env tc in
@@ -1217,9 +1208,6 @@ let rec globalize ids e = match e with
in
let bnd = List.map map bnd in
CTacLet (loc, isrec, bnd, e)
-| CTacArr (loc, el) ->
- let el = List.map (fun e -> globalize ids e) el in
- CTacArr (loc, el)
| CTacCnv (loc, e, t) ->
let e = globalize ids e in
CTacCnv (loc, e, t)
@@ -1431,9 +1419,6 @@ let rec subst_rawexpr subst t = match t with
let bnd' = List.smartmap map bnd in
let e' = subst_rawexpr subst e in
if bnd' == bnd && e' == e then t else CTacLet (loc, isrec, bnd', e')
-| CTacArr (loc, el) ->
- let el' = List.smartmap (fun e -> subst_rawexpr subst e) el in
- if el' == el then t else CTacArr (loc, el')
| CTacCnv (loc, e, c) ->
let e' = subst_rawexpr subst e in
let c' = subst_rawtype subst c in