diff options
| author | Schuyler Eldridge | 2020-06-15 16:58:16 -0400 |
|---|---|---|
| committer | Schuyler Eldridge | 2020-06-22 20:00:10 -0400 |
| commit | 6855b5ed7842f9f3d9aca6cc1d95fc7bf55c4735 (patch) | |
| tree | f36337e2e81a86fabfc210e8c0613e0350aaf01d /src/main/scala/chisel3 | |
| parent | 36fae73b6c65d56b5b462c4c0eb8de2160223429 (diff) | |
Deprecate Driver Execution classes
Signed-off-by: Schuyler Eldridge <schuyler.eldridge@ibm.com>
Diffstat (limited to 'src/main/scala/chisel3')
| -rw-r--r-- | src/main/scala/chisel3/Driver.scala | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/main/scala/chisel3/Driver.scala b/src/main/scala/chisel3/Driver.scala index 571fff60..6ac0a5c1 100644 --- a/src/main/scala/chisel3/Driver.scala +++ b/src/main/scala/chisel3/Driver.scala @@ -61,6 +61,7 @@ trait BackendCompilationUtilities extends FirrtlBackendCompilationUtilities { /** * This family provides return values from the chisel3 and possibly firrtl compile steps */ +@deprecated("This will be removed in Chisel 3.5", "Chisel3 3.4") trait ChiselExecutionResult /** @@ -69,6 +70,7 @@ trait ChiselExecutionResult * @param emitted The emitted Chirrrl text * @param firrtlResultOption Optional Firrtl result, @see freechipsproject/firrtl for details */ +@deprecated("This will be removed in Chisel 3.5", "Chisel 3.4") case class ChiselExecutionSuccess( circuitOption: Option[Circuit], emitted: String, @@ -80,6 +82,7 @@ case class ChiselExecutionSuccess( * * @param message A clue might be provided here. */ +@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") |
