| Index: test/cctest/compiler/test-representation-change.cc
|
| diff --git a/test/cctest/compiler/test-representation-change.cc b/test/cctest/compiler/test-representation-change.cc
|
| index 55f054a74bc1ef1e04934f10c7abf8a437061f08..f44648e651594577d67067f885ad3024ac2d85b4 100644
|
| --- a/test/cctest/compiler/test-representation-change.cc
|
| +++ b/test/cctest/compiler/test-representation-change.cc
|
| @@ -6,7 +6,6 @@
|
|
|
| #include "src/v8.h"
|
| #include "test/cctest/cctest.h"
|
| -#include "test/cctest/compiler/codegen-tester.h"
|
| #include "test/cctest/compiler/graph-builder-tester.h"
|
| #include "test/cctest/compiler/value-helper.h"
|
|
|
| @@ -59,7 +58,7 @@ class RepresentationChangerTester : public HandleAndZoneScope,
|
| void CheckFloat64Constant(Node* n, double expected) {
|
| Float64Matcher m(n);
|
| CHECK(m.HasValue());
|
| - CheckDoubleEq(expected, m.Value());
|
| + CHECK_EQ(expected, m.Value());
|
| }
|
|
|
| void CheckFloat32Constant(Node* n, float expected) {
|
| @@ -78,7 +77,7 @@ class RepresentationChangerTester : public HandleAndZoneScope,
|
| NumberMatcher m(n);
|
| CHECK_EQ(IrOpcode::kNumberConstant, n->opcode());
|
| CHECK(m.HasValue());
|
| - CheckDoubleEq(expected, m.Value());
|
| + CHECK_EQ(expected, m.Value());
|
| }
|
|
|
| Node* Parameter(int index = 0) {
|
|
|