mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-26 22:34:27 +02:00
6732819: Turn off compressed oops by default for now
Workaround for CompOops bug Reviewed-by: coleenp
This commit is contained in:
parent
1de8ce55c1
commit
632c83fb46
1 changed files with 2 additions and 1 deletions
|
@ -1176,7 +1176,8 @@ void Arguments::set_ergonomics_flags() {
|
|||
// by ergonomics.
|
||||
if (MaxHeapSize <= max_heap_for_compressed_oops()) {
|
||||
if (FLAG_IS_DEFAULT(UseCompressedOops)) {
|
||||
FLAG_SET_ERGO(bool, UseCompressedOops, true);
|
||||
// Turn off until bug is fixed.
|
||||
// FLAG_SET_ERGO(bool, UseCompressedOops, true);
|
||||
}
|
||||
} else {
|
||||
if (UseCompressedOops && !FLAG_IS_DEFAULT(UseCompressedOops)) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue