aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorazidar2015-08-05 22:01:31 -0700
committerazidar2015-08-05 22:01:31 -0700
commit3cbffd9006e156ac2f7cd61702ce7f99360fcbd0 (patch)
tree8750721dae64f361f54b502e9f0e7264c9b84eb4
parent8af3f50d79723782f9e381c33abf7c2e5f5f8017 (diff)
Added type inference before gender check
-rw-r--r--src/main/stanza/compilers.stanza3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main/stanza/compilers.stanza b/src/main/stanza/compilers.stanza
index c3c29c40..e55f43c1 100644
--- a/src/main/stanza/compilers.stanza
+++ b/src/main/stanza/compilers.stanza
@@ -56,8 +56,9 @@ public defmethod passes (c:StandardVerilog) -> List<Pass> :
CheckGenders()
ExpandAccessors()
LowerToGround()
- CheckGenders()
ExpandIndexedConnects()
+ InferTypes()
+ CheckGenders()
ExpandWhens()
InferWidths()
Pad()