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

Unified Diff: test/unittests/compiler/js-create-lowering-unittest.cc

Issue 1965013005: [turbofan] Slighly improve JSCreateArguments lowering. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 7 months 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
« src/compiler/js-create-lowering.cc ('K') | « src/runtime/runtime-scopes.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/unittests/compiler/js-create-lowering-unittest.cc
diff --git a/test/unittests/compiler/js-create-lowering-unittest.cc b/test/unittests/compiler/js-create-lowering-unittest.cc
index e43dd27774517d8e6034730942ab474ad83d90ad..af7785a70f1dfbda33bf5a168f49ec791bbc04a0 100644
--- a/test/unittests/compiler/js-create-lowering-unittest.cc
+++ b/test/unittests/compiler/js-create-lowering-unittest.cc
@@ -95,7 +95,7 @@ TEST_F(JSCreateLoweringTest, JSCreateArgumentsViaStub) {
r.replacement(),
IsCall(_, IsHeapConstant(
CodeFactory::FastNewStrictArguments(isolate()).code()),
- closure, context, frame_state, effect, control));
+ closure, context, effect, control));
}
TEST_F(JSCreateLoweringTest, JSCreateArgumentsRestParameterViaStub) {
@@ -113,7 +113,7 @@ TEST_F(JSCreateLoweringTest, JSCreateArgumentsRestParameterViaStub) {
r.replacement(),
IsCall(_, IsHeapConstant(
CodeFactory::FastNewRestParameter(isolate()).code()),
- closure, context, frame_state, effect, control));
+ closure, context, effect, control));
}
TEST_F(JSCreateLoweringTest, JSCreateArgumentsInlinedMapped) {
« src/compiler/js-create-lowering.cc ('K') | « src/runtime/runtime-scopes.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698