| Index: test/unittests/compiler/bytecode-graph-builder-unittest.cc
|
| diff --git a/test/unittests/compiler/bytecode-graph-builder-unittest.cc b/test/unittests/compiler/bytecode-graph-builder-unittest.cc
|
| index db13ae0940c34eee5d15b333437878c63c5f0e50..1da8faf91de40943d65e81f248e3ca901a5c5a3d 100644
|
| --- a/test/unittests/compiler/bytecode-graph-builder-unittest.cc
|
| +++ b/test/unittests/compiler/bytecode-graph-builder-unittest.cc
|
| @@ -134,11 +134,11 @@ Matcher<Node*> BytecodeGraphBuilderTest::IsFeedbackVector(Node* effect,
|
| int offset = SharedFunctionInfo::kFeedbackVectorOffset - kHeapObjectTag;
|
| int offset1 = JSFunction::kSharedFunctionInfoOffset - kHeapObjectTag;
|
|
|
| - return IsLoad(kMachAnyTagged,
|
| - IsLoad(kMachAnyTagged,
|
| - IsParameter(Linkage::kJSFunctionCallClosureParamIndex),
|
| - IsIntPtrConstant(offset1), effect, control),
|
| - IsIntPtrConstant(offset), effect, control);
|
| + return IsLoad(
|
| + kMachAnyTagged,
|
| + IsLoad(kMachAnyTagged, IsParameter(Linkage::kJSCallClosureParamIndex),
|
| + IsIntPtrConstant(offset1), effect, control),
|
| + IsIntPtrConstant(offset), effect, control);
|
| }
|
|
|
|
|
|
|