mirror of https://github.com/rust-lang/rust
40 lines
1.2 KiB
Rust
40 lines
1.2 KiB
Rust
//@ test-mir-pass: InstSimplify-after-simplifycfg
|
|
#![crate_type = "lib"]
|
|
|
|
// For each of these, only 2 of the 6 should simplify,
|
|
// as the others have the wrong types.
|
|
|
|
// EMIT_MIR ref_of_deref.references.InstSimplify-after-simplifycfg.diff
|
|
// CHECK-LABEL: references
|
|
pub fn references(const_ref: &i32, mut_ref: &mut [i32]) {
|
|
// CHECK: _3 = copy _1;
|
|
let _a = &*const_ref;
|
|
// CHECK: _4 = &(*_2);
|
|
let _b = &*mut_ref;
|
|
// CHECK: _5 = copy _2;
|
|
let _c = &mut *mut_ref;
|
|
// CHECK: _6 = &raw const (*_1);
|
|
let _d = &raw const *const_ref;
|
|
// CHECK: _7 = &raw const (*_2);
|
|
let _e = &raw const *mut_ref;
|
|
// CHECK: _8 = &raw mut (*_2);
|
|
let _f = &raw mut *mut_ref;
|
|
}
|
|
|
|
// EMIT_MIR ref_of_deref.pointers.InstSimplify-after-simplifycfg.diff
|
|
// CHECK-LABEL: pointers
|
|
pub unsafe fn pointers(const_ptr: *const [i32], mut_ptr: *mut i32) {
|
|
// CHECK: _3 = &(*_1);
|
|
let _a = &*const_ptr;
|
|
// CHECK: _4 = &(*_2);
|
|
let _b = &*mut_ptr;
|
|
// CHECK: _5 = &mut (*_2);
|
|
let _c = &mut *mut_ptr;
|
|
// CHECK: _6 = copy _1;
|
|
let _d = &raw const *const_ptr;
|
|
// CHECK: _7 = &raw const (*_2);
|
|
let _e = &raw const *mut_ptr;
|
|
// CHECK: _8 = copy _2;
|
|
let _f = &raw mut *mut_ptr;
|
|
}
|