# HG changeset patch # User Tom Rodriguez # Date 1395951138 25200 # Node ID 6325d3d82f1ba114cd03e12e377962f1d096ede8 # Parent 8762b6b8fbb64f122a615de89ccfd33b5783c487 set MethodProfileWidth to 0 since it's unused diff -r 8762b6b8fbb6 -r 6325d3d82f1b src/cpu/sparc/vm/graalGlobals_sparc.hpp --- a/src/cpu/sparc/vm/graalGlobals_sparc.hpp Thu Mar 27 13:11:17 2014 -0700 +++ b/src/cpu/sparc/vm/graalGlobals_sparc.hpp Thu Mar 27 13:12:18 2014 -0700 @@ -57,7 +57,7 @@ define_pd_global(uintx,CodeCacheMinBlockLength, 4); define_pd_global(uintx, CodeCacheMinimumUseSpace, 400*K); define_pd_global(intx, TypeProfileWidth, 8); -define_pd_global(intx, MethodProfileWidth, 4); +define_pd_global(intx, MethodProfileWidth, 0); #endif // COMPILERGRAAL #endif // CPU_SPARC_VM_GRAALGLOBALS_SPARC_HPP diff -r 8762b6b8fbb6 -r 6325d3d82f1b src/cpu/x86/vm/graalGlobals_x86.hpp --- a/src/cpu/x86/vm/graalGlobals_x86.hpp Thu Mar 27 13:11:17 2014 -0700 +++ b/src/cpu/x86/vm/graalGlobals_x86.hpp Thu Mar 27 13:12:18 2014 -0700 @@ -57,7 +57,7 @@ define_pd_global(uintx,CodeCacheMinBlockLength, 4); define_pd_global(uintx, CodeCacheMinimumUseSpace, 400*K); define_pd_global(intx, TypeProfileWidth, 8); -define_pd_global(intx, MethodProfileWidth, 4); +define_pd_global(intx, MethodProfileWidth, 0); #endif // COMPILERGRAAL #endif // CPU_X86_VM_GRAALGLOBALS_X86_HPP