summaryrefslogtreecommitdiffstats
path: root/tests/mir-opt/copy-prop/branch.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/mir-opt/copy-prop/branch.rs')
-rw-r--r--tests/mir-opt/copy-prop/branch.rs27
1 files changed, 27 insertions, 0 deletions
diff --git a/tests/mir-opt/copy-prop/branch.rs b/tests/mir-opt/copy-prop/branch.rs
new file mode 100644
index 000000000..50b1e00fa
--- /dev/null
+++ b/tests/mir-opt/copy-prop/branch.rs
@@ -0,0 +1,27 @@
+//! Tests that we bail out when there are multiple assignments to the same local.
+// unit-test: CopyProp
+fn val() -> i32 {
+ 1
+}
+
+fn cond() -> bool {
+ true
+}
+
+// EMIT_MIR branch.foo.CopyProp.diff
+fn foo() -> i32 {
+ let x = val();
+
+ let y = if cond() {
+ x
+ } else {
+ val();
+ x
+ };
+
+ y
+}
+
+fn main() {
+ foo();
+}