Chromium Code Reviews| Index: test/cctest/compiler/codegen-tester.h |
| diff --git a/test/cctest/compiler/codegen-tester.h b/test/cctest/compiler/codegen-tester.h |
| index 55dbecdb9eca8709ebb0d139ca1a1e7ac52fe67f..1319f9421c2946109049b94d4cac109f8b265732 100644 |
| --- a/test/cctest/compiler/codegen-tester.h |
| +++ b/test/cctest/compiler/codegen-tester.h |
| @@ -512,7 +512,7 @@ static inline void CheckFloatEq(volatile float x, volatile float y) { |
| if (std::isnan(x)) { |
| CHECK(std::isnan(y)); |
| } else { |
| - CHECK(x == y); |
| + CHECK_EQ(x, y); |
| } |
| } |