blob: 08237ab22a600e573dee3dc0f47846201d31840f (
plain)
1
2
3
4
5
6
7
8
9
|
// See LICENSE for license details.
package firrtl.passes
import firrtl.ir._
object CheckChirrtl extends Pass with CheckHighFormLike {
def errorOnChirrtl(info: Info, mname: String, s: Statement): Option[PassException] = None
}
|