Skip to content

Commit 902a3e2

Browse files
committed
FileCheck mult_by_zero.
1 parent 8e9b912 commit 902a3e2

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

tests/mir-opt/const_prop/mult_by_zero.rs

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1-
// skip-filecheck
21
// unit-test: ConstProp
32

43
// EMIT_MIR mult_by_zero.test.ConstProp.diff
5-
fn test(x : i32) -> i32 {
6-
x * 0
4+
fn test(x: i32) -> i32 {
5+
// CHECK: fn test(
6+
// CHECK: _0 = const 0_i32;
7+
x * 0
78
}
89

910
fn main() {

0 commit comments

Comments
 (0)