# HG changeset patch # User jmasa # Date 1202773207 28800 # Node ID 5ff61c9f560106ddfb5bbf127d071ebf87da6376 # Parent 92489cdc94d1ad7b1fa668b83e4bfa118247b06b 6624782: Bigapps crashes during CMS precleaning. Summary: Lowered optimization level for files instanceKlass.cpp and objArrayKlass.cpp Reviewed-by: ysr diff -r 92489cdc94d1 -r 5ff61c9f5601 build/solaris/makefiles/amd64.make --- a/build/solaris/makefiles/amd64.make Tue Dec 04 16:28:18 2007 -0800 +++ b/build/solaris/makefiles/amd64.make Mon Feb 11 15:40:07 2008 -0800 @@ -19,7 +19,7 @@ # Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, # CA 95054 USA or visit www.sun.com if you need additional information or # have any questions. -# +# # # Must also specify if CPU is little endian @@ -45,6 +45,10 @@ OPT_CFLAGS/generateOptoStub.o = -xO2 OPT_CFLAGS/thread.o = -xO2 +# Work around for 6624782 +OPT_CFLAGS/instanceKlass.o = -Qoption ube -no_a2lf +OPT_CFLAGS/objArrayKlass.o = -Qoption ube -no_a2lf + else ifeq ("${Platform_compiler}", "gcc") @@ -58,6 +62,6 @@ # error _JUNK2_ := $(shell echo >&2 \ "*** ERROR: this compiler is not yet supported by this code base!") - @exit 1 + @exit 1 endif endif