summaryrefslogtreecommitdiff
path: root/deps/v8/src/compiler/simplified-lowering.h
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/src/compiler/simplified-lowering.h')
-rw-r--r--deps/v8/src/compiler/simplified-lowering.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/deps/v8/src/compiler/simplified-lowering.h b/deps/v8/src/compiler/simplified-lowering.h
index b78d5d5cfe..86ac8c75ab 100644
--- a/deps/v8/src/compiler/simplified-lowering.h
+++ b/deps/v8/src/compiler/simplified-lowering.h
@@ -23,8 +23,8 @@ class TypeCache;
class V8_EXPORT_PRIVATE SimplifiedLowering final {
public:
- SimplifiedLowering(JSGraph* jsgraph, Zone* zone,
- SourcePositionTable* source_position,
+ SimplifiedLowering(JSGraph* jsgraph, const JSHeapBroker* js_heap_broker,
+ Zone* zone, SourcePositionTable* source_position,
NodeOriginTable* node_origins,
PoisoningMitigationLevel poisoning_level);
~SimplifiedLowering() {}
@@ -48,6 +48,7 @@ class V8_EXPORT_PRIVATE SimplifiedLowering final {
private:
JSGraph* const jsgraph_;
+ const JSHeapBroker* js_heap_broker_;
Zone* const zone_;
TypeCache const& type_cache_;
SetOncePointer<Node> to_number_code_;