Skip to content

Commit f2efa79

Browse files
committed
Rollup merge of rust-lang#45089 - rkruppe:master, r=bluss
Fix typo in codegen test Without the `:`, the `CHECK-NOT` is ignored by FileCheck, making the line not test anything.
2 parents 23a99f4 + 7d1c14a commit f2efa79

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/test/codegen/float_math.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ use std::intrinsics::{fadd_fast, fsub_fast, fmul_fast, fdiv_fast, frem_fast};
1919
#[no_mangle]
2020
pub fn add(x: f32, y: f32) -> f32 {
2121
// CHECK: fadd float
22-
// CHECK-NOT fast
22+
// CHECK-NOT: fast
2323
x + y
2424
}
2525

0 commit comments

Comments
 (0)