6732819: Turn off compressed oops by default for now
authortrims
Fri, 01 Aug 2008 18:51:27 -0700
changeset 825 49e709107aec
parent 824 ea3d0c81cee9
child 826 178d2008c5e8
6732819: Turn off compressed oops by default for now Summary: Workaround for CompOops bug Reviewed-by: coleenp
hotspot/src/share/vm/runtime/arguments.cpp
--- 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)) {