changeset 19277:6bef14568a54

eclipseformat
author Josef Eisl <josef.eisl@jku.at>
date Wed, 11 Feb 2015 16:13:02 +0100
parents 313f9a9647e5
children db637487949a
files graal/com.oracle.graal.hotspot.test/src/com/oracle/graal/hotspot/test/AheadOfTimeCompilationTest.java graal/com.oracle.graal.lir/src/com/oracle/graal/lir/phases/LIRSuites.java
diffstat 2 files changed, 6 insertions(+), 7 deletions(-) [+]
line wrap: on
line diff
--- a/graal/com.oracle.graal.hotspot.test/src/com/oracle/graal/hotspot/test/AheadOfTimeCompilationTest.java	Wed Feb 11 16:08:50 2015 +0100
+++ b/graal/com.oracle.graal.hotspot.test/src/com/oracle/graal/hotspot/test/AheadOfTimeCompilationTest.java	Wed Feb 11 16:13:02 2015 +0100
@@ -215,8 +215,7 @@
             final Suites suitesLocal = suitesProvider.createSuites();
             final LIRSuites lirSuitesLocal = suitesProvider.createLIRSuites();
             final CompilationResult compResult = compileGraph(graph, cc, method, getProviders(), getBackend(), getCodeCache().getTarget(), null, getDefaultGraphBuilderSuite(),
-                            OptimisticOptimizations.ALL, getProfilingInfo(graph), getSpeculationLog(), suitesLocal, lirSuitesLocal, new CompilationResult(),
-                            CompilationResultBuilderFactory.Default);
+                            OptimisticOptimizations.ALL, getProfilingInfo(graph), getSpeculationLog(), suitesLocal, lirSuitesLocal, new CompilationResult(), CompilationResultBuilderFactory.Default);
             addMethod(method, compResult);
         }
 
--- a/graal/com.oracle.graal.lir/src/com/oracle/graal/lir/phases/LIRSuites.java	Wed Feb 11 16:08:50 2015 +0100
+++ b/graal/com.oracle.graal.lir/src/com/oracle/graal/lir/phases/LIRSuites.java	Wed Feb 11 16:13:02 2015 +0100
@@ -45,9 +45,9 @@
      * {@link LIRHighTierPhase}s are executed between {@link LIR} generation and register
      * allocation.
      * <p>
-     * {@link LIRHighTierPhase Implementers} can create new
-     * {@link LIRGeneratorTool#newVariable variables}, {@link LIRGenerationResult#getFrameMap stack
-     * slots} and {@link LIRGenerationResult#getFrameMapBuilder virtual stack slots}.
+     * {@link LIRHighTierPhase Implementers} can create new {@link LIRGeneratorTool#newVariable
+     * variables}, {@link LIRGenerationResult#getFrameMap stack slots} and
+     * {@link LIRGenerationResult#getFrameMapBuilder virtual stack slots}.
      */
     public LIRPhaseSuite<LIRHighTierContext> getHighTier() {
         return highTier;
@@ -68,8 +68,8 @@
      * {@link LIRLowTierPhase}s are executed after register allocation and before machine code
      * generation.
      * <p>
-     * A {@link LIRLowTierPhase} must not introduce new {@link Variable}s,
-     * {@link VirtualStackSlot}s or {@link StackSlot}s.
+     * A {@link LIRLowTierPhase} must not introduce new {@link Variable}s, {@link VirtualStackSlot}s
+     * or {@link StackSlot}s.
      */
     public LIRPhaseSuite<LIRLowTierContext> getLowTier() {
         return lowTier;