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

Unified Diff: test/unittests/compiler/load-elimination-unittest.cc

Issue 2797993006: [turbofan] Add type to the allocation operator. (Closed)
Patch Set: Remove caching Created 3 years, 8 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
« no previous file with comments | « test/unittests/compiler/escape-analysis-unittest.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/load-elimination-unittest.cc
diff --git a/test/unittests/compiler/load-elimination-unittest.cc b/test/unittests/compiler/load-elimination-unittest.cc
index 8d34fb9699dd60abb9915e788b3ca83f80782ec4..e4b35e820302424ff0d4a71ca924bc37df02883f 100644
--- a/test/unittests/compiler/load-elimination-unittest.cc
+++ b/test/unittests/compiler/load-elimination-unittest.cc
@@ -465,7 +465,7 @@ TEST_F(LoadEliminationTest, AliasAnalysisForFinishRegion) {
load_elimination.Reduce(effect);
Node* object0 = effect =
- graph()->NewNode(simplified()->Allocate(NOT_TENURED),
+ graph()->NewNode(simplified()->Allocate(Type::Any(), NOT_TENURED),
jsgraph()->Constant(16), effect, control);
load_elimination.Reduce(effect);
@@ -478,7 +478,7 @@ TEST_F(LoadEliminationTest, AliasAnalysisForFinishRegion) {
load_elimination.Reduce(effect);
Node* object1 = effect =
- graph()->NewNode(simplified()->Allocate(NOT_TENURED),
+ graph()->NewNode(simplified()->Allocate(Type::Any(), NOT_TENURED),
jsgraph()->Constant(16), effect, control);
load_elimination.Reduce(effect);
« no previous file with comments | « test/unittests/compiler/escape-analysis-unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698