about summary refs log tree commit diff
path: root/tests/mir-opt/const_prop/pointer_expose_provenance.rs
blob: bee8a985f8f9b247f9c2fb2c14b06c4503209802 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// EMIT_MIR_FOR_EACH_PANIC_STRATEGY
//@ test-mir-pass: GVN

#[inline(never)]
fn read(_: usize) {}

// EMIT_MIR pointer_expose_provenance.main.GVN.diff
fn main() {
    // CHECK-LABEL: fn main(
    // CHECK: [[ptr:_.*]] = const main::FOO;
    // CHECK: [[ref:_.*]] = &raw const (*[[ptr]]);
    // CHECK: [[x:_.*]] = move [[ref]] as usize (PointerExposeProvenance);
    // CHECK: = read(copy [[x]])
    const FOO: &i32 = &1;
    let x = FOO as *const i32 as usize;
    read(x);
}