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

Unified Diff: test/unittests/interpreter/bytecode-array-builder-unittest.cc

Issue 1469303006: Revert of Reland "[Interpreter] Add CreateClosure to BytecodeGraphBuilder." (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 | « test/unittests/compiler/node-test-utils.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/unittests/interpreter/bytecode-array-builder-unittest.cc
diff --git a/test/unittests/interpreter/bytecode-array-builder-unittest.cc b/test/unittests/interpreter/bytecode-array-builder-unittest.cc
index 98b833c93637cd0c3f5ec0323b6bbf5e44def203..acc7393a4f02b2324ef2359ed61d7725ad67ac45 100644
--- a/test/unittests/interpreter/bytecode-array-builder-unittest.cc
+++ b/test/unittests/interpreter/bytecode-array-builder-unittest.cc
@@ -94,11 +94,7 @@
.StoreKeyedProperty(reg, reg, 2056, LanguageMode::STRICT);
// Emit closure operations.
- Factory* factory = isolate()->factory();
- Handle<SharedFunctionInfo> shared_info = factory->NewSharedFunctionInfo(
- factory->NewStringFromStaticChars("function_a"), MaybeHandle<Code>(),
- false);
- builder.CreateClosure(shared_info, NOT_TENURED);
+ builder.CreateClosure(NOT_TENURED);
// Emit argument creation operations.
builder.CreateArguments(CreateArgumentsType::kMappedArguments)
@@ -218,12 +214,6 @@
builder.GetConstantPoolEntry(handle(Smi::FromInt(i), isolate()));
}
builder.LoadLiteral(Smi::FromInt(20000000));
-
- // CreateClosureWide
- Handle<SharedFunctionInfo> shared_info2 = factory->NewSharedFunctionInfo(
- factory->NewStringFromStaticChars("function_b"), MaybeHandle<Code>(),
- false);
- builder.CreateClosure(shared_info2, NOT_TENURED);
builder.Return();
« no previous file with comments | « test/unittests/compiler/node-test-utils.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698