Skip to content

Commit 6a7e5ce

Browse files
ofrobotsgibfahn
authored andcommitted
deps: V8: cherry-pick 32141e9 from upstream
Original commit message: Disable --turbo-inline-array-builtins by default. Current chrome stable has a high number of crashes due to bugs in this feature. These bugs are already fixed but the fixes are hard to merge back. Therefore we decided to disable the feature in stable. This CL is intended to be merged to stable and then reverted in tot. Bug: chromium:762020 Change-Id: Ibd5a08e3b303a204fb84a408271a1c0f97cc5b7b Reviewed-on: https://chromium-review.googlesource.com/738176 Reviewed-by: Jaroslav Sevcik <[email protected]> Commit-Queue: Georg Neis <[email protected]> Cr-Commit-Position: refs/heads/master@{#48931} Refs: v8/v8@32141e9 PR-URL: #16704
1 parent a815e1b commit 6a7e5ce

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 6
1212
#define V8_MINOR_VERSION 1
1313
#define V8_BUILD_NUMBER 534
14-
#define V8_PATCH_LEVEL 46
14+
#define V8_PATCH_LEVEL 47
1515

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

deps/v8/src/flag-definitions.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -450,7 +450,7 @@ DEFINE_BOOL(function_context_specialization, false,
450450
"enable function context specialization in TurboFan")
451451
DEFINE_BOOL(turbo_inlining, true, "enable inlining in TurboFan")
452452
DEFINE_BOOL(trace_turbo_inlining, false, "trace TurboFan inlining")
453-
DEFINE_BOOL(turbo_inline_array_builtins, true,
453+
DEFINE_BOOL(turbo_inline_array_builtins, false,
454454
"inline array builtins in TurboFan code")
455455
DEFINE_BOOL(turbo_load_elimination, true, "enable load elimination in TurboFan")
456456
DEFINE_BOOL(trace_turbo_load_elimination, false,

0 commit comments

Comments
 (0)