Skip to content

Commit 65b1083

Browse files
committed
update enum.rs
1 parent 7ad307d commit 65b1083

File tree

1 file changed

+0
-2
lines changed
  • tests/mir-opt/dataflow-const-prop

1 file changed

+0
-2
lines changed

tests/mir-opt/dataflow-const-prop/enum.rs

-2
Original file line numberDiff line numberDiff line change
@@ -129,9 +129,7 @@ fn multiple(x: bool, i: u8) {
129129
// The dataflow state must have:
130130
// discriminant(e) => Top
131131
// (e as Some).0 => Top
132-
// CHECK-NOT: [[x2]] = const 5
133132
// CHECK: [[x2]] = const 0_u8;
134-
// CHECK-NOT: [[x2]] = const 5
135133
// CHECK: [[some:_.*]] = (({{_.*}} as Some).0: u8)
136134
// CHECK: [[x2]] = [[some]];
137135
let x2 = match e { Some(i) => i, None => 0 };

0 commit comments

Comments
 (0)