mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 06:45:07 +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.
|
// by ergonomics.
|
||||||
if (MaxHeapSize <= max_heap_for_compressed_oops()) {
|
if (MaxHeapSize <= max_heap_for_compressed_oops()) {
|
||||||
if (FLAG_IS_DEFAULT(UseCompressedOops)) {
|
if (FLAG_IS_DEFAULT(UseCompressedOops)) {
|
||||||
FLAG_SET_ERGO(bool, UseCompressedOops, true);
|
// Turn off until bug is fixed.
|
||||||
|
// FLAG_SET_ERGO(bool, UseCompressedOops, true);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if (UseCompressedOops && !FLAG_IS_DEFAULT(UseCompressedOops)) {
|
if (UseCompressedOops && !FLAG_IS_DEFAULT(UseCompressedOops)) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue