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.

33 lines
547 B
Rust
Raw Normal View History

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