Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(9)

Unified Diff: test/unittests/compiler/bytecode-graph-builder-unittest.cc

Issue 1461973002: [turbofan] Make new.target explicit in JSCallDescriptor. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/x87/macro-assembler-x87.h ('k') | test/unittests/compiler/instruction-selector-unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
}
« no previous file with comments | « src/x87/macro-assembler-x87.h ('k') | test/unittests/compiler/instruction-selector-unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698