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

import chisel3.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
}