about summary refs log tree commit diff
path: root/tests/mir-opt/const_prop/indirect_mutation.rs
blob: e82be0a8388fc40d135fb42bc83a5c87a03241b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
//@ test-mir-pass: GVN
// Check that we do not propagate past an indirect mutation.

// EMIT_MIR indirect_mutation.foo.GVN.diff
fn foo() {
    // CHECK-LABEL: fn foo(
    // CHECK: debug u => _1;
    // CHECK: debug y => _3;
    // CHECK: _1 = const (1_i32,);
    // CHECK: _2 = &mut (_1.0: i32);
    // CHECK: (*_2) = const 5_i32;
    // CHECK: _4 = copy (_1.0: i32);
    // CHECK: _3 = Eq(move _4, const 5_i32);

    let mut u = (1,);
    *&mut u.0 = 5;
    let y = { u.0 } == 5;
}

// EMIT_MIR indirect_mutation.bar.GVN.diff
fn bar() {
    // CHECK-LABEL: fn bar(
    // CHECK: debug v => _1;
    // CHECK: debug y => _4;
    // CHECK: _3 = &raw mut (_1.0: i32);
    // CHECK: (*_3) = const 5_i32;
    // CHECK: _5 = copy (_1.0: i32);
    // CHECK: _4 = Eq(move _5, const 5_i32);

    let mut v = (1,);
    unsafe {
        *&raw mut v.0 = 5;
    }
    let y = { v.0 } == 5;
}

fn main() {
    foo();
    bar();
}