OpenJDK / amber / amber
changeset 825:49e709107aec
6732819: Turn off compressed oops by default for now
Summary: Workaround for CompOops bug
Reviewed-by: coleenp
author | trims |
---|---|
date | Fri, 01 Aug 2008 18:51:27 -0700 |
parents | ea3d0c81cee9 |
children | 178d2008c5e8 |
files | hotspot/src/share/vm/runtime/arguments.cpp |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/hotspot/src/share/vm/runtime/arguments.cpp Fri Jul 25 11:29:03 2008 -0700 +++ b/hotspot/src/share/vm/runtime/arguments.cpp Fri Aug 01 18:51:27 2008 -0700 @@ -1176,7 +1176,8 @@ // 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)) {