summaryrefslogtreecommitdiffstats
path: root/tests/mir-opt/copy-prop/custom_move_arg.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/mir-opt/copy-prop/custom_move_arg.rs')
-rw-r--r--tests/mir-opt/copy-prop/custom_move_arg.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/mir-opt/copy-prop/custom_move_arg.rs b/tests/mir-opt/copy-prop/custom_move_arg.rs
index a90db08fa..d1c5ffdff 100644
--- a/tests/mir-opt/copy-prop/custom_move_arg.rs
+++ b/tests/mir-opt/copy-prop/custom_move_arg.rs
@@ -13,11 +13,11 @@ struct NotCopy(bool);
fn f(_1: NotCopy) {
mir!({
let _2 = _1;
- Call(RET, bb1, opaque(Move(_1)))
+ Call(RET = opaque(Move(_1)), bb1)
}
bb1 = {
let _3 = Move(_2);
- Call(RET, bb2, opaque(_3))
+ Call(RET = opaque(_3), bb2)
}
bb2 = {
Return()