summaryrefslogtreecommitdiff
path: root/plugin/src/main
diff options
context:
space:
mode:
authorJack Koenig2020-08-25 15:54:36 -0700
committerGitHub2020-08-25 15:54:36 -0700
commitca80db225c8bf0248068fa8c2531ca440f96ec4a (patch)
tree585e5f5cd0c254ef3e92704f906196e8e577b4f9 /plugin/src/main
parent42c883b478995ff5d8dfc7dcaaf1424d7a7659d1 (diff)
Relax plugin scalac phase order (#1568)
It must run after the typer, but doesn't need to "run right after". The stricter dependency conflicted with the semanticdb-typer.
Diffstat (limited to 'plugin/src/main')
-rw-r--r--plugin/src/main/scala-2.12/chisel3/plugin/ChiselPlugin.scala1
1 files changed, 0 insertions, 1 deletions
diff --git a/plugin/src/main/scala-2.12/chisel3/plugin/ChiselPlugin.scala b/plugin/src/main/scala-2.12/chisel3/plugin/ChiselPlugin.scala
index 785a253d..3b3b52e9 100644
--- a/plugin/src/main/scala-2.12/chisel3/plugin/ChiselPlugin.scala
+++ b/plugin/src/main/scala-2.12/chisel3/plugin/ChiselPlugin.scala
@@ -21,7 +21,6 @@ class ChiselPlugin(val global: Global) extends Plugin {
class ChiselComponent(val global: Global) extends PluginComponent with TypingTransformers {
import global._
val runsAfter = List[String]("typer")
- override val runsRightAfter: Option[String] = Some("typer")
val phaseName: String = "chiselcomponent"
def newPhase(_prev: Phase): ChiselComponentPhase = new ChiselComponentPhase(_prev)
class ChiselComponentPhase(prev: Phase) extends StdPhase(prev) {