Chromium Code Reviews| 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, |