about summary refs log tree commit diff
path: root/src/test/codegen/float_math.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/codegen/float_math.rs')
-rw-r--r--src/test/codegen/float_math.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/codegen/float_math.rs b/src/test/codegen/float_math.rs
index bc458d45446..6a6d6f90b2e 100644
--- a/src/test/codegen/float_math.rs
+++ b/src/test/codegen/float_math.rs
@@ -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
 }