# HG changeset patch # User Christian Haeubl # Date 1355498624 -3600 # Node ID 57ccc2bb5868f881fd4705ffce49c895ba48a612 # Parent 310a68c63b690a0468c6ff2ecd134fe591dea585 C1 build bugfix diff -r 310a68c63b69 -r 57ccc2bb5868 make/linux/makefiles/vm.make --- a/make/linux/makefiles/vm.make Fri Dec 14 15:19:38 2012 +0100 +++ b/make/linux/makefiles/vm.make Fri Dec 14 16:23:44 2012 +0100 @@ -196,7 +196,7 @@ ZERO_SPECIFIC_FILES := zero ifdef OMIT_GRAAL - GRAAL_SPECIFIC_FILES := graal\* graal* + GRAAL_SPECIFIC_FILES := graal\* else GRAAL_SPECIFIC_FILES := endif diff -r 310a68c63b69 -r 57ccc2bb5868 src/cpu/x86/vm/graalGlobals_x86.hpp --- a/src/cpu/x86/vm/graalGlobals_x86.hpp Fri Dec 14 15:19:38 2012 +0100 +++ b/src/cpu/x86/vm/graalGlobals_x86.hpp Fri Dec 14 16:23:44 2012 +0100 @@ -31,10 +31,6 @@ // Sets the default values for platform dependent flags used by the Graal compiler. // (see graalGlobals.hpp) -#ifndef COMPILER2 -define_pd_global(intx, TypeProfileWidth, 8); -#endif - define_pd_global(intx, GraalSafepointPollOffset, 256 ); #if !defined(COMPILER1) && !defined(COMPILER2) @@ -61,6 +57,7 @@ define_pd_global(bool, ProfileInterpreter, true ); define_pd_global(intx, CodeCacheExpansionSize, 64*K ); define_pd_global(uintx,CodeCacheMinBlockLength, 4); +define_pd_global(intx, TypeProfileWidth, 8); #endif #endif // CPU_X86_VM_GRAALGLOBALS_X86_HPP