| Index: test/unittests/compiler/node-test-utils.h
|
| diff --git a/test/unittests/compiler/node-test-utils.h b/test/unittests/compiler/node-test-utils.h
|
| index b11cf06b66cafc54c5e723c67d0e73ec749e6ce9..6c3a6286f1a3725fac09c0c57776ca9796585ff9 100644
|
| --- a/test/unittests/compiler/node-test-utils.h
|
| +++ b/test/unittests/compiler/node-test-utils.h
|
| @@ -5,6 +5,7 @@
|
| #ifndef V8_UNITTESTS_COMPILER_NODE_TEST_UTILS_H_
|
| #define V8_UNITTESTS_COMPILER_NODE_TEST_UTILS_H_
|
|
|
| +#include "src/compiler/js-operator.h"
|
| #include "src/compiler/machine-operator.h"
|
| #include "src/compiler/machine-type.h"
|
| #include "testing/gmock/include/gmock/gmock.h"
|
| @@ -348,6 +349,11 @@ Matcher<Node*> IsNumberToInt32(const Matcher<Node*>& input_matcher);
|
| Matcher<Node*> IsNumberToUint32(const Matcher<Node*>& input_matcher);
|
| Matcher<Node*> IsParameter(const Matcher<int> index_matcher);
|
| Matcher<Node*> IsLoadFramePointer();
|
| +Matcher<Node*> IsJSLoadNamed(const Handle<Name> name,
|
| + const Matcher<Node*>& object_value_matcher,
|
| + const Matcher<Node*>& feedback_vector_matcher,
|
| + const Matcher<Node*>& effect_matcher,
|
| + const Matcher<Node*>& control_matcher);
|
|
|
| } // namespace compiler
|
| } // namespace internal
|
|
|