From 308dc55f788ad884393604d461b81de4e4bf3e98 Mon Sep 17 00:00:00 2001 From: Seo Sanghyeon Date: Wed, 23 Mar 2016 02:10:09 +0900 Subject: [PATCH] Fix const trans Const was dereferenced when autoderefs is zero. --- src/librustc_trans/trans/consts.rs | 2 +- src/test/run-pass/issue-30615.rs | 14 ++++++++++++++ 2 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 src/test/run-pass/issue-30615.rs diff --git a/src/librustc_trans/trans/consts.rs b/src/librustc_trans/trans/consts.rs index 82cd6aace0a35..3aafcdf203a34 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 0000000000000..a26509d19829c --- /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 or the MIT license +// , 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; + &[0u8] as *const [u8; 1] as *const [u8]; +}