changeset 7233:57ccc2bb5868

C1 build bugfix
author Christian Haeubl <haeubl@ssw.jku.at>
date Fri, 14 Dec 2012 16:23:44 +0100
parents 310a68c63b69
children 911872d97f65
files make/linux/makefiles/vm.make src/cpu/x86/vm/graalGlobals_x86.hpp
diffstat 2 files changed, 2 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- 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
--- 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