From 6855b5ed7842f9f3d9aca6cc1d95fc7bf55c4735 Mon Sep 17 00:00:00 2001 From: Schuyler Eldridge Date: Mon, 15 Jun 2020 16:58:16 -0400 Subject: Deprecate Driver Execution classes Signed-off-by: Schuyler Eldridge --- src/main/scala/chisel3/Driver.scala | 3 +++ 1 file changed, 3 insertions(+) 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") -- cgit v1.2.3