aboutsummaryrefslogtreecommitdiff
path: root/src/main/scala/firrtl/passes/Passes.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/scala/firrtl/passes/Passes.scala')
-rw-r--r--src/main/scala/firrtl/passes/Passes.scala19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/main/scala/firrtl/passes/Passes.scala b/src/main/scala/firrtl/passes/Passes.scala
index de07aaab..452b994f 100644
--- a/src/main/scala/firrtl/passes/Passes.scala
+++ b/src/main/scala/firrtl/passes/Passes.scala
@@ -252,10 +252,6 @@ object InferTypes extends Pass {
Circuit(c.info,modulesx.map({m => mname = m.name; infer_types(m)}) , c.main )
}
}
-object CheckTypes extends Pass with StanzaPass {
- def name = "Check Types"
- def run (c:Circuit): Circuit = stanzaPass(c, "check-types")
-}
object ResolveGenders extends Pass {
private var mname = ""
@@ -320,11 +316,6 @@ object ResolveGenders extends Pass {
}
}
-object CheckGenders extends Pass with StanzaPass {
- def name = "Check Genders"
- def run (c:Circuit): Circuit = stanzaPass(c, "check-genders")
-}
-
object InferWidths extends Pass {
def name = "Infer Widths"
var mname = ""
@@ -623,11 +614,6 @@ object InferWidths extends Pass {
}
}
-object CheckWidths extends Pass with StanzaPass {
- def name = "Width Check"
- def run (c:Circuit): Circuit = stanzaPass(c, "width-check")
-}
-
object PullMuxes extends Pass {
private var mname = ""
def name = "Pull Muxes"
@@ -1114,11 +1100,6 @@ object ExpandWhens extends Pass {
}
}
-object CheckInitialization extends Pass with StanzaPass {
- def name = "Check Initialization"
- def run (c:Circuit): Circuit = stanzaPass(c, "check-init")
-}
-
object ConstProp extends Pass {
def name = "Constant Propogation"
var mname = ""