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

Unified Diff: src/compiler/representation-change.h

Issue 2320013002: [turbofan] Revert "Avoid overflow checks on SpeculativeNumberAdd/Subtract/Multiply." (Closed)
Patch Set: Created 4 years, 3 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/representation-change.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/representation-change.h
diff --git a/src/compiler/representation-change.h b/src/compiler/representation-change.h
index ebe948eeeeb3202db7fb85a40649749c876e36f3..fbb4cb5c95649037e02432056242ace665533529 100644
--- a/src/compiler/representation-change.h
+++ b/src/compiler/representation-change.h
@@ -35,10 +35,6 @@ class Truncation final {
bool IsUsedAsFloat64() const {
return LessGeneral(kind_, TruncationKind::kFloat64);
}
- bool IdentifiesMinusZeroAndZero() {
- return LessGeneral(kind_, TruncationKind::kWord32) ||
- LessGeneral(kind_, TruncationKind::kBool);
- }
bool IdentifiesNaNAndZero() {
return LessGeneral(kind_, TruncationKind::kWord32) ||
LessGeneral(kind_, TruncationKind::kBool);
« no previous file with comments | « no previous file | src/compiler/representation-change.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698