Skip to content

Commit 063ff08

Browse files
luyahanbengl
authored andcommitted
deps: V8: cherry-pick c6f6626deb14
Original commit message: [riscv64] Fix segmentation fault of webpack-make from cockpit issue: riscv-collab/v8#520 Change-Id: I7fe298ad16a2f599805929db0f084a81c4eb7f7a Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3503170 Auto-Submit: Yahan Lu <[email protected]> Reviewed-by: ji qiu <[email protected]> Reviewed-by: Yahan Lu <[email protected]> Commit-Queue: Yahan Lu <[email protected]> Cr-Commit-Position: refs/heads/main@{#79376} Refs: v8/v8@c6f6626 PR-URL: #42240 Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Jiawen Geng <[email protected]> Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Michael Dawson <[email protected]>
1 parent d06e92d commit 063ff08

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

common.gypi

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636

3737
# Reset this number to 0 on major V8 upgrades.
3838
# Increment by one for each non-official patch applied to deps/v8.
39-
'v8_embedder_string': '-node.15',
39+
'v8_embedder_string': '-node.16',
4040

4141
##### V8 defaults for Node.js #####
4242

deps/v8/src/regexp/riscv64/regexp-macro-assembler-riscv64.cc

+2-2
Original file line numberDiff line numberDiff line change
@@ -857,8 +857,8 @@ Handle<HeapObject> RegExpMacroAssemblerRISCV::GetCode(Handle<String> source) {
857857
__ Branch(&load_char_start_regexp, ne, current_input_offset(),
858858
Operand(s3));
859859
// Offset from the end is zero if we already reached the end.
860-
__ BranchShort(&exit_label_, eq, current_input_offset(),
861-
Operand(zero_reg));
860+
__ Branch(&exit_label_, eq, current_input_offset(),
861+
Operand(zero_reg));
862862
// Advance current position after a zero-length match.
863863
Label advance;
864864
__ bind(&advance);

0 commit comments

Comments
 (0)