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

Unified Diff: src/typing-reset.cc

Issue 1322003002: Drop region parameter to Unbounded, as it can be done without. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 4 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 | « src/typing-reset.h ('k') | test/cctest/expression-type-collector-macros.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/typing-reset.cc
diff --git a/src/typing-reset.cc b/src/typing-reset.cc
index 0650656b2e54ecfc4606e70eb666365dc577f106..97a641a8d07d75d130a91f910e455df08bd8c6c8 100644
--- a/src/typing-reset.cc
+++ b/src/typing-reset.cc
@@ -15,11 +15,11 @@ namespace internal {
TypingReseter::TypingReseter(CompilationInfo* info)
- : AstExpressionVisitor(info), info_(info) {}
+ : AstExpressionVisitor(info) {}
void TypingReseter::VisitExpression(Expression* expression) {
- expression->set_bounds(Bounds::Unbounded(info_->zone()));
+ expression->set_bounds(Bounds::Unbounded());
}
}
} // namespace v8::internal
« no previous file with comments | « src/typing-reset.h ('k') | test/cctest/expression-type-collector-macros.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698