diff options
| author | Eduard-Mihai Burtescu <edy.burt@gmail.com> | 2016-03-23 17:59:15 +0200 |
|---|---|---|
| committer | Eduard-Mihai Burtescu <edy.burt@gmail.com> | 2016-03-23 17:59:15 +0200 |
| commit | 12e54bba216c8dfe4f2434ab5555d560d7699f74 (patch) | |
| tree | 6064b06ba9b0d35e5c625b178a8031e2c6087812 | |
| parent | c028b1c02cf976b08e685a3716eee5db0322ff7c (diff) | |
| parent | 308dc55f788ad884393604d461b81de4e4bf3e98 (diff) | |
| download | rust-12e54bba216c8dfe4f2434ab5555d560d7699f74.tar.gz rust-12e54bba216c8dfe4f2434ab5555d560d7699f74.zip | |
Rollup merge of #32430 - sanxiyn:const-trans, r=arielb1
Fix const trans Fix #30615. The idea was that when there are N autoderefs, first do N-1 derefs and check for autoref. If there is autoref, done, if not, do one more deref. But when N is zero, doing one more deref is wrong.
| -rw-r--r-- | src/librustc_trans/trans/consts.rs | 2 | ||||
| -rw-r--r-- | src/test/run-pass/issue-30615.rs | 14 |
2 files changed, 15 insertions, 1 deletions
diff --git a/src/librustc_trans/trans/consts.rs b/src/librustc_trans/trans/consts.rs index 82cd6aace0a..3aafcdf203a 100644 --- a/src/librustc_trans/trans/consts.rs +++ b/src/librustc_trans/trans/consts.rs @@ -381,7 +381,7 @@ pub fn const_expr<'a, 'tcx>(cx: &CrateContext<'a, 'tcx>, llconst = addr_of(cx, llconst, type_of::align_of(cx, ty), "autoref"); ty = cx.tcx().mk_imm_ref(cx.tcx().mk_region(ty::ReStatic), ty); } - } else { + } else if adj.autoderefs > 0 { let (dv, dt) = const_deref(cx, llconst, ty); llconst = dv; diff --git a/src/test/run-pass/issue-30615.rs b/src/test/run-pass/issue-30615.rs new file mode 100644 index 00000000000..a26509d1982 --- /dev/null +++ b/src/test/run-pass/issue-30615.rs @@ -0,0 +1,14 @@ +// Copyright 2016 The Rust Project Developers. See the COPYRIGHT +// file at the top-level directory of this distribution and at +// http://rust-lang.org/COPYRIGHT. +// +// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or +// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license +// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your +// option. This file may not be copied, modified, or distributed +// except according to those terms. + +fn main() { + &0u8 as *const u8 as *const PartialEq<u8>; + &[0u8] as *const [u8; 1] as *const [u8]; +} |
