We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea91c2f commit c9620c2Copy full SHA for c9620c2
partition_alloc.gni
@@ -340,11 +340,12 @@ declare_args() {
340
declare_args() {
341
# Because of address space issue, this feature cannot be enabled on
342
# 32bit OS and iOS, i.e. has_64_bit_pointers && !is_ios
343
- move_metadata_outside_gigacage = has_64_bit_pointers && !is_ios
+ move_metadata_outside_gigacage = false && has_64_bit_pointers && !is_ios
344
}
345
346
347
- enable_move_metadata_outside_gigacage_trial = move_metadata_outside_gigacage
+ enable_move_metadata_outside_gigacage_trial =
348
+ false && move_metadata_outside_gigacage
349
350
351
assert(!enable_move_metadata_outside_gigacage_trial ||
0 commit comments