-
Notifications
You must be signed in to change notification settings - Fork 12.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
41 additions
and
24 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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(); | ||
} |
This file was deleted.
Oops, something went wrong.