diff options
| author | Deborah Soung | 2020-01-20 16:48:31 -0800 |
|---|---|---|
| committer | mergify[bot] | 2020-01-21 00:48:31 +0000 |
| commit | c7715c160a0dd07765e736b813c8b6b26b27de28 (patch) | |
| tree | 06971c41a1b8f1777e7ac34a964982aae7d348df | |
| parent | 0a98a82c588882eb2905a5564792670c2cfaf858 (diff) | |
specifying type of target field (#1305)
| -rw-r--r-- | src/main/scala/chisel3/stage/ChiselStage.scala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/scala/chisel3/stage/ChiselStage.scala b/src/main/scala/chisel3/stage/ChiselStage.scala index 0a0cc47c..df23f97d 100644 --- a/src/main/scala/chisel3/stage/ChiselStage.scala +++ b/src/main/scala/chisel3/stage/ChiselStage.scala @@ -16,7 +16,7 @@ import java.io.{StringWriter, PrintWriter} class ChiselStage extends Stage with PreservesAll[Phase] { val shell: Shell = new Shell("chisel") with ChiselCli with FirrtlCli - val targets = + val targets: Seq[PhaseManager.PhaseDependency] = Seq( classOf[chisel3.stage.phases.Checks], classOf[chisel3.stage.phases.Elaborate], classOf[chisel3.stage.phases.AddImplicitOutputFile], |
