base::iter_structural_ty: tuples

This commit is contained in:
Jed Davis 2013-02-24 17:32:09 -08:00
parent ca450e345f
commit 68b3f0d8a4

View File

@ -689,8 +689,9 @@ fn iter_variant(cx: block, a_tup: ValueRef,
cx = tvec::iter_vec_raw(cx, base, t, len, f); cx = tvec::iter_vec_raw(cx, base, t, len, f);
} }
ty::ty_tup(args) => { ty::ty_tup(args) => {
let repr = adt::represent_type(cx.ccx(), t);
for vec::eachi(args) |i, arg| { for vec::eachi(args) |i, arg| {
let llfld_a = GEPi(cx, av, [0u, i]); let llfld_a = adt::trans_GEP(cx, &repr, av, 0, i);
cx = f(cx, llfld_a, *arg); cx = f(cx, llfld_a, *arg);
} }
} }