Fix LLVM assertion when out-of-bounds indexing in a constant
Fixes #23291
This commit is contained in:
parent
f899513a30
commit
de67c3a5bb
2 changed files with 19 additions and 1 deletions
|
@ -505,9 +505,11 @@ fn const_expr_unadjusted<'a, 'tcx>(cx: &CrateContext<'a, 'tcx>,
|
||||||
// pass. Reporting here is a bit late.
|
// pass. Reporting here is a bit late.
|
||||||
cx.sess().span_err(e.span,
|
cx.sess().span_err(e.span,
|
||||||
"const index-expr is out of bounds");
|
"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, _) => {
|
ast::ExprCast(ref base, _) => {
|
||||||
let llty = type_of::type_of(cx, ety);
|
let llty = type_of::type_of(cx, ety);
|
||||||
let (v, basety) = const_expr(cx, &**base, param_substs);
|
let (v, basety) = const_expr(cx, &**base, param_substs);
|
||||||
|
|
16
src/test/compile-fail/const-array-oob.rs
Normal file
16
src/test/compile-fail/const-array-oob.rs
Normal file
|
@ -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;
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue