os-rust/tests/mir-opt/const_prop/slice_len.rs

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

15 lines
497 B
Rust
Raw Normal View History

//@ test-mir-pass: GVN
//@ compile-flags: -Zmir-enable-passes=+InstSimplify-after-simplifycfg -Zdump-mir-exclude-alloc-bytes
2023-12-02 21:04:15 +00:00
// EMIT_MIR_FOR_EACH_PANIC_STRATEGY
// EMIT_MIR_FOR_EACH_BIT_WIDTH
2020-04-04 17:15:01 +00:00
2023-09-20 21:43:33 +00:00
// EMIT_MIR slice_len.main.GVN.diff
fn main() {
2023-12-02 21:04:15 +00:00
// CHECK-LABEL: fn main(
// CHECK: debug a => [[a:_.*]];
2024-08-18 15:51:53 -07:00
// CHECK: [[slice:_.*]] = copy {{.*}} as &[u32] (PointerCoercion(Unsize));
2023-12-17 22:30:20 +00:00
// CHECK: assert(const true,
// CHECK: [[a]] = const 2_u32;
2023-12-02 21:04:15 +00:00
let a = (&[1u32, 2, 3] as &[u32])[1];
}