summaryrefslogtreecommitdiff
path: root/chiselFrontend/src
diff options
context:
space:
mode:
authorducky2016-06-01 13:00:40 -0700
committerducky2016-06-08 16:22:28 -0700
commit68447044e8eba5c8f525639130f1a347677ff543 (patch)
treefab4d62dba2ffb78e673ee54939d9088739a79f1 /chiselFrontend/src
parent69c984607e87cb62c82c99056b2664f11b968267 (diff)
Move deprecated debug into compatibility
Diffstat (limited to 'chiselFrontend/src')
-rw-r--r--chiselFrontend/src/main/scala/chisel/core/Data.scala5
1 files changed, 0 insertions, 5 deletions
diff --git a/chiselFrontend/src/main/scala/chisel/core/Data.scala b/chiselFrontend/src/main/scala/chisel/core/Data.scala
index 077c4893..cae38144 100644
--- a/chiselFrontend/src/main/scala/chisel/core/Data.scala
+++ b/chiselFrontend/src/main/scala/chisel/core/Data.scala
@@ -17,11 +17,6 @@ object INPUT extends Direction("input") { override def flip: Direction = OUTPUT
object OUTPUT extends Direction("output") { override def flip: Direction = INPUT }
object NO_DIR extends Direction("?") { override def flip: Direction = NO_DIR }
-@deprecated("debug doesn't do anything in Chisel3 as no pruning happens in the frontend", "chisel3")
-object debug { // scalastyle:ignore object.name
- def apply (arg: Data): Data = arg
-}
-
/** Mixing in this trait flips the direction of an Aggregate. */
trait Flipped extends Data {
this.overrideDirection(_.flip, !_)