diff make/build-graal.xml @ 9169:f0fc8329bf98

ensure that the generated build-graal.xml is stable
author Doug Simon <doug.simon@oracle.com>
date Tue, 16 Apr 2013 22:55:31 +0200
parents 45b37dcb24de
children 0b7d9bcc0f44
line wrap: on
line diff
--- a/make/build-graal.xml	Tue Apr 16 22:46:02 2013 +0200
+++ b/make/build-graal.xml	Tue Apr 16 22:55:31 2013 +0200
@@ -75,14 +75,14 @@
   <target depends="compile" name="jar">
     <mkdir dir="${jar.dir}"/>
     <jar basedir="${classes.dir}" destfile="${jar.file}">
+      <service type="com.oracle.graal.nodes.spi.ReplacementsProvider">
+        <provider classname="com.oracle.graal.hotspot.replacements.CallSiteSubstitutions"/>
+        <provider classname="com.oracle.graal.hotspot.replacements.HotSpotInstalledCodeIntrinsics"/>
+        <provider classname="com.oracle.graal.replacements.GraalMethodSubstitutions"/>
+      </service>
       <service type="com.oracle.graal.phases.tiers.CompilerConfiguration">
         <provider classname="com.oracle.graal.compiler.phases.BasicConfiguration"/>
       </service>
-      <service type="com.oracle.graal.nodes.spi.ReplacementsProvider">
-        <provider classname="com.oracle.graal.hotspot.replacements.HotSpotInstalledCodeIntrinsics"/>
-        <provider classname="com.oracle.graal.hotspot.replacements.CallSiteSubstitutions"/>
-        <provider classname="com.oracle.graal.replacements.GraalMethodSubstitutions"/>
-      </service>
     </jar>
   </target>
   <target name="cleanclasses">