Skip to content

Commit

Permalink
Disable Optimizer for JIT
Browse files Browse the repository at this point in the history
  • Loading branch information
marzipankaiser committed Oct 18, 2023
1 parent 3a8bd7a commit cb306fd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ class JIT() extends Compiler[String] {
// The Compilation Pipeline
// ------------------------
// Source => Core => Lifted => Machine => LLVM
lazy val Compile = allToCore(Core) andThen Aggregate andThen core.PolymorphismBoxing andThen core.Optimizer andThen LiftInference andThen Machine map {
lazy val Compile = allToCore(Core) andThen Aggregate andThen core.PolymorphismBoxing andThen LiftInference andThen Machine map {
case (mod, main, prog) => (mod, jit.Transformer.transform(prog))
}

Expand Down

0 comments on commit cb306fd

Please sign in to comment.