Skip to content

Commit 42ae2ce

Browse files
deps: patch V8 to 14.3.127.18
Refs: v8/v8@14.3.127.17...14.3.127.18
1 parent 9bcfbeb commit 42ae2ce

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

deps/v8/include/v8-version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#define V8_MAJOR_VERSION 14
1212
#define V8_MINOR_VERSION 3
1313
#define V8_BUILD_NUMBER 127
14-
#define V8_PATCH_LEVEL 17
14+
#define V8_PATCH_LEVEL 18
1515

1616
// Use 1 for candidates and 0 otherwise.
1717
// (Boolean macro values are not supported by all preprocessors.)

deps/v8/src/codegen/arm64/assembler-arm64.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4968,7 +4968,7 @@ void Assembler::CheckVeneerPool(bool force_emit, bool require_jump,
49684968
return;
49694969
}
49704970

4971-
CHECK_LT(pc_offset(), unresolved_branches_first_limit());
4971+
DCHECK(pc_offset() < unresolved_branches_first_limit());
49724972

49734973
// Some short sequence of instruction mustn't be broken up by veneer pool
49744974
// emission, such sequences are protected by calls to BlockVeneerPoolFor and

0 commit comments

Comments
 (0)