about summary refs log tree commit diff
diff options
context:
space:
mode:
authorManish Goregaokar <manishsmail@gmail.com>2015-03-12 09:13:42 +0530
committerManish Goregaokar <manishsmail@gmail.com>2015-03-12 09:13:42 +0530
commit2c251fa84694112890d879cd5fe05d18006f0a0c (patch)
tree79ac70e9ab1c7eb6655a9f0949b8437ba93e8a02
parent425297a93035bc89663ff5f83d229f6c19341ffb (diff)
parentde67c3a5bbfc8a9db2dc3d134700046dd6db05b3 (diff)
downloadrust-2c251fa84694112890d879cd5fe05d18006f0a0c.tar.gz
rust-2c251fa84694112890d879cd5fe05d18006f0a0c.zip
Rollup merge of #23294 - dotdash:coob, r=alexcrichton
 Fixes #23291
-rw-r--r--src/librustc_trans/trans/consts.rs4
-rw-r--r--src/test/compile-fail/const-array-oob.rs16
2 files changed, 19 insertions, 1 deletions
diff --git a/src/librustc_trans/trans/consts.rs b/src/librustc_trans/trans/consts.rs
index 39b430b7ad5..8dcabe0a94b 100644
--- a/src/librustc_trans/trans/consts.rs
+++ b/src/librustc_trans/trans/consts.rs
@@ -505,8 +505,10 @@ fn const_expr_unadjusted<'a, 'tcx>(cx: &CrateContext<'a, 'tcx>,
                   // pass. Reporting here is a bit late.
                   cx.sess().span_err(e.span,
                                      "const index-expr is out of bounds");
+                  C_undef(type_of::type_of(cx, bt).element_type())
+              } else {
+                  const_get_elt(cx, arr, &[iv as c_uint])
               }
-              const_get_elt(cx, arr, &[iv as c_uint])
           }
           ast::ExprCast(ref base, _) => {
             let llty = type_of::type_of(cx, ety);
diff --git a/src/test/compile-fail/const-array-oob.rs b/src/test/compile-fail/const-array-oob.rs
new file mode 100644
index 00000000000..84d35292608
--- /dev/null
+++ b/src/test/compile-fail/const-array-oob.rs
@@ -0,0 +1,16 @@
+// Copyright 2015 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.
+
+const FOO: [u32; 3] = [1, 2, 3];
+const BAR: u32 = FOO[5]; //~ ERROR const index-expr is out of bounds
+
+fn main() {
+    let _ = BAR;
+}