Rollup merge of #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.
This commit is contained in:
kennytm 2017-10-10 20:08:22 +08:00
commit f2efa793f0
No known key found for this signature in database
GPG Key ID: FEF6C8051D0E013C

View File

@ -19,7 +19,7 @@ use std::intrinsics::{fadd_fast, fsub_fast, fmul_fast, fdiv_fast, frem_fast};
#[no_mangle]
pub fn add(x: f32, y: f32) -> f32 {
// CHECK: fadd float
// CHECK-NOT fast
// CHECK-NOT: fast
x + y
}