]> git.lizzy.rs Git - rust.git/commitdiff
Fix const trans
authorSeo Sanghyeon <sanxiyn@gmail.com>
Tue, 22 Mar 2016 17:10:09 +0000 (02:10 +0900)
committerSeo Sanghyeon <sanxiyn@gmail.com>
Tue, 22 Mar 2016 17:10:09 +0000 (02:10 +0900)
Const was dereferenced when autoderefs is zero.

src/librustc_trans/trans/consts.rs
src/test/run-pass/issue-30615.rs [new file with mode: 0644]

index 82cd6aace0a35063c0825baf34c05c6f0cd96cb4..3aafcdf203a345fde9d2d682f2b5e6f71958f3bd 100644 (file)
@@ -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 (file)
index 0000000..a26509d
--- /dev/null
@@ -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];
+}