Skip to content

Commit

Permalink
FileCheck const_prop_miscompile.
Browse files Browse the repository at this point in the history
  • Loading branch information
cjgillot committed Oct 31, 2023
1 parent e65ec7d commit ac4d096
Show file tree
Hide file tree
Showing 4 changed files with 41 additions and 24 deletions.
41 changes: 41 additions & 0 deletions tests/mir-opt/const_prop/indirect_mutation.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
// unit-test: ConstProp
// Check that we do not propagate past an indirect mutation.
#![feature(raw_ref_op)]

// EMIT_MIR indirect_mutation.foo.ConstProp.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 = (_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.ConstProp.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 = (_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();
}
24 changes: 0 additions & 24 deletions tests/mir-opt/const_prop_miscompile.rs

This file was deleted.

0 comments on commit ac4d096

Please sign in to comment.