# HG changeset patch # User roland # Date 1382635954 -7200 # Node ID 43d5f32a342141f18088c4507f7a628112ecc0bb # Parent bb769f9ed280ed3b0a730085f97c612c215d4375 8026978: JSR292: fatal error: Type profiling not implemented on this platform Summary: force TypeProfileLevel to 0 on non x86 Reviewed-by: twisti diff -r bb769f9ed280 -r 43d5f32a3421 hotspot/src/share/vm/runtime/arguments.cpp --- a/hotspot/src/share/vm/runtime/arguments.cpp Wed Oct 23 20:20:03 2013 +0400 +++ b/hotspot/src/share/vm/runtime/arguments.cpp Thu Oct 24 19:32:34 2013 +0200 @@ -3723,6 +3723,10 @@ // Doing the replace in parent maps helps speculation FLAG_SET_DEFAULT(ReplaceInParentMaps, true); } +#ifndef X86 + // Only on x86 for now + FLAG_SET_DEFAULT(TypeProfileLevel, 0); +#endif #endif if (PrintAssembly && FLAG_IS_DEFAULT(DebugNonSafepoints)) {