summaryrefslogtreecommitdiff
path: root/src/main/scala/chisel/compatibility/debug.scala
blob: 8850c76b7c79a97aa2d6e50507509724c2376ce1 (plain)
1
2
3
4
5
6
7
8
package chisel.compatibility

import chisel.core._

@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
}