Index: src/compiler/machine-operator-reducer.h |
diff --git a/src/compiler/machine-operator-reducer.h b/src/compiler/machine-operator-reducer.h |
index 164f9b84bd0cef9080733dcc9b6546b4ceb45c16..593f7f2d22c7a8250f5128a6e230905d459d3d35 100644 |
--- a/src/compiler/machine-operator-reducer.h |
+++ b/src/compiler/machine-operator-reducer.h |
@@ -24,7 +24,8 @@ class JSGraph; |
class V8_EXPORT_PRIVATE MachineOperatorReducer final |
: public NON_EXPORTED_BASE(Reducer) { |
public: |
- explicit MachineOperatorReducer(JSGraph* jsgraph); |
+ explicit MachineOperatorReducer(JSGraph* jsgraph, |
+ bool allow_signalling_nan = true); |
~MachineOperatorReducer(); |
Reduction Reduce(Node* node) override; |
@@ -104,6 +105,7 @@ class V8_EXPORT_PRIVATE MachineOperatorReducer final |
MachineOperatorBuilder* machine() const; |
JSGraph* jsgraph_; |
+ bool allow_signalling_nan_; |
}; |
} // namespace compiler |