blob: 3909eefd6ddb2da0ae2b1eb7d41af2e08752bd1d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
package firrtl
package passes
import scala.collection.mutable
import firrtl.Mappers._
import firrtl.ir._
object RemoveEmpty extends Pass {
def name = "Remove Empty Statements"
private def onModule(m: DefModule): DefModule = {
m match {
case m: Module => Module(m.info, m.name, m.ports, Utils.squashEmpty(m.body))
case m: ExtModule => m
}
}
def run(c: Circuit): Circuit = Circuit(c.info, c.modules.map(onModule), c.main)
}
|