Skip to content

Commit

Permalink
Fix initialization order problem.
Browse files Browse the repository at this point in the history
  • Loading branch information
DarkDimius committed Nov 18, 2014
1 parent 284915c commit 3c89b52
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/compiler/scala/tools/nsc/Global.scala
Expand Up @@ -28,8 +28,7 @@ import transform.patmat.PatternMatching
import transform._
import backend.icode.{ ICodes, GenICode, ICodeCheckers }
import backend.{ ScalaPrimitives, JavaPlatform }
import backend.jvm.GenBCode
import backend.jvm.GenASM
import scala.tools.nsc.backend.jvm.{ScalacBackendInterface, GenBCode, GenASM}
import backend.opt.{ Inliners, InlineExceptionHandlers, ConstantOptimization, ClosureElimination, DeadCodeElimination }
import backend.icode.analysis._
import scala.language.postfixOps
Expand Down Expand Up @@ -630,6 +629,7 @@ class Global(var currentSettings: Settings, var reporter: Reporter)
// phaseName = "bcode"
object genBCode extends {
val global: Global.this.type = Global.this
val int = new ScalacBackendInterface[global.type](global)
val runsAfter = List("dce")
val runsRightAfter = None
} with GenBCode
Expand Down

1 comment on commit 3c89b52

@scala-jenkins
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Job pr-scala failed for 3c89b52 Took 6 min. (ping @DarkDimius) (results):


To retry exactly this commit, comment PLS REBUILD/pr-scala@3c89b525f31827d81a3489fabfd2b0afe235a54f on PR 4136.
NOTE: New commits are rebuilt automatically as they appear. A forced rebuild is only necessary for transient failures.

Please sign in to comment.