rust/tests/mir-opt/inline/issue_106141.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
560 B
Rust
Raw Permalink Normal View History

//@ compile-flags: -C debuginfo=full
2023-10-16 15:28:28 -05:00
// Verify that we do not ICE inlining a function which uses _0 as an index.
// EMIT_MIR_FOR_EACH_PANIC_STRATEGY
2023-10-16 15:28:28 -05:00
2023-01-14 05:40:52 -06:00
pub fn outer() -> usize {
2023-10-16 15:28:28 -05:00
// CHECK-LABEL: fn outer(
// CHECK: = {{.*}}[_0];
2023-01-14 05:40:52 -06:00
inner()
}
#[inline(never)]
2023-01-14 05:40:52 -06:00
fn index() -> usize {
loop {}
}
#[inline]
fn inner() -> usize {
2023-10-16 15:28:28 -05:00
// CHECK-LABEL: fn inner(
// CHECK: = {{.*}}[_0];
2023-01-14 05:40:52 -06:00
let buffer = &[true];
let index = index();
if buffer[index] { index } else { 0 }
2023-01-14 05:40:52 -06:00
}
fn main() {
outer();
}
// EMIT_MIR issue_106141.outer.Inline.diff