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

Unified Diff: src/compiler/operation-typer.h

Issue 2221863002: [turbofan] Slightly improve typing rule for NumberSubtract. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 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 | « no previous file | src/compiler/operation-typer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/operation-typer.h
diff --git a/src/compiler/operation-typer.h b/src/compiler/operation-typer.h
index e99f8062d6f487d70ee7895e48f269052ef448ff..dcfe0c45eadeb229f087b83bf70a21ad3528d3d3 100644
--- a/src/compiler/operation-typer.h
+++ b/src/compiler/operation-typer.h
@@ -67,7 +67,8 @@ class OperationTyper {
Type* Rangify(Type*);
Type* AddRanger(double lhs_min, double lhs_max, double rhs_min,
double rhs_max);
- Type* SubtractRanger(RangeType* lhs, RangeType* rhs);
+ Type* SubtractRanger(double lhs_min, double lhs_max, double rhs_min,
+ double rhs_max);
Type* MultiplyRanger(Type* lhs, Type* rhs);
Zone* zone() const { return zone_; }
« no previous file with comments | « no previous file | src/compiler/operation-typer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698