summaryrefslogtreecommitdiff
path: root/deps/v8/src/compiler/jump-threading.h
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/src/compiler/jump-threading.h')
-rw-r--r--deps/v8/src/compiler/jump-threading.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/deps/v8/src/compiler/jump-threading.h b/deps/v8/src/compiler/jump-threading.h
index 3a378d0499..4d57f281c5 100644
--- a/deps/v8/src/compiler/jump-threading.h
+++ b/deps/v8/src/compiler/jump-threading.h
@@ -22,7 +22,8 @@ class JumpThreading {
// Rewrite the instructions to forward jumps and branches.
// May also negate some branches.
- static void ApplyForwarding(ZoneVector<RpoNumber>& forwarding,
+ static void ApplyForwarding(Zone* local_zone,
+ ZoneVector<RpoNumber>& forwarding,
InstructionSequence* code);
};