diff options
| author | Jack Koenig | 2020-08-27 20:56:24 -0700 |
|---|---|---|
| committer | GitHub | 2020-08-27 23:56:24 -0400 |
| commit | 7e02ce979228771edc63b136499d8c1b84ffc367 (patch) | |
| tree | 993c0d0456f0811efd16a3c0c787f85bae3435f5 /src/main/scala/chisel3 | |
| parent | b01a14d78e34e2ad3065453da7c355b266eaf8d4 (diff) | |
Restore and deprecate Chisel.Driver (#1571)
It shouldn't be removed until we also remove the underlying chisel3.Driver.
Diffstat (limited to 'src/main/scala/chisel3')
| -rw-r--r-- | src/main/scala/chisel3/Driver.scala | 2 | ||||
| -rw-r--r-- | src/main/scala/chisel3/compatibility.scala | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/src/main/scala/chisel3/Driver.scala b/src/main/scala/chisel3/Driver.scala index 0e1389c2..25a93e8b 100644 --- a/src/main/scala/chisel3/Driver.scala +++ b/src/main/scala/chisel3/Driver.scala @@ -85,7 +85,7 @@ case class ChiselExecutionSuccess( @deprecated("This will be removed in Chisel 3.5", "Chisel 3.4") case class ChiselExecutionFailure(message: String) extends ChiselExecutionResult -@deprecated("Please switch to chisel3.stage.ChiselStage. Driver will be removed in 3.4.", "3.2.4") +@deprecated("Please switch to chisel3.stage.ChiselStage", "3.2.4") object Driver extends BackendCompilationUtilities { /** diff --git a/src/main/scala/chisel3/compatibility.scala b/src/main/scala/chisel3/compatibility.scala index d63a8343..16ad1bed 100644 --- a/src/main/scala/chisel3/compatibility.scala +++ b/src/main/scala/chisel3/compatibility.scala @@ -396,6 +396,8 @@ package object Chisel { implicit class fromIntToWidth(x: Int) extends chisel3.fromIntToWidth(x) type BackendCompilationUtilities = firrtl.util.BackendCompilationUtilities + @deprecated("Please switch to chisel3.stage.ChiselStage", "3.4") + val Driver = chisel3.Driver val ImplicitConversions = chisel3.util.ImplicitConversions // Deprecated as of Chisel3 |
