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

Unified Diff: src/compiler/js-graph.h

Issue 2141953002: [Turbofan]: Add integer multiplication with overflow to typed lowering. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@multiply
Patch Set: fix failing tests. Created 4 years, 5 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
Index: src/compiler/js-graph.h
diff --git a/src/compiler/js-graph.h b/src/compiler/js-graph.h
index fe5545a04d8d5f2096b06d8c38104018e906ffec..18eac51e5ff38ebfe16a7372d9aab4a6c6e8dd22 100644
--- a/src/compiler/js-graph.h
+++ b/src/compiler/js-graph.h
@@ -54,6 +54,7 @@ class JSGraph : public ZoneObject {
Node* FalseConstant();
Node* NullConstant();
Node* ZeroConstant();
+ Node* MinusZeroConstant();
Benedikt Meurer 2016/07/14 11:41:35 Remove this one, you don't need it.
Node* OneConstant();
Node* NaNConstant();
@@ -160,6 +161,7 @@ class JSGraph : public ZoneObject {
kFalseConstant,
kNullConstant,
kZeroConstant,
+ kMinusZeroConstant,
kOneConstant,
kNaNConstant,
kEmptyStateValues,

Powered by Google App Engine
This is Rietveld 408576698