aboutsummaryrefslogtreecommitdiff
path: root/src/main/stanza/compilers.stanza
diff options
context:
space:
mode:
authorazidar2016-01-31 13:00:31 -0800
committerazidar2016-02-09 18:57:06 -0800
commitb1a62e54386aa7d6d67cd795cb7ba179de412c82 (patch)
tree8c195b4f36fcbdf846826f4cf9ed91955fba09eb /src/main/stanza/compilers.stanza
parente985d47312458459e9ebe42fe99b5a063c08e637 (diff)
Moved check-high-form to operate on working ir
Diffstat (limited to 'src/main/stanza/compilers.stanza')
-rw-r--r--src/main/stanza/compilers.stanza5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/main/stanza/compilers.stanza b/src/main/stanza/compilers.stanza
index e8c0acc8..01f6db96 100644
--- a/src/main/stanza/compilers.stanza
+++ b/src/main/stanza/compilers.stanza
@@ -54,10 +54,10 @@ public defmethod passes (c:StandardVerilog) -> List<Pass> :
CInferMDir()
RemoveCHIRRTL()
;===============
- CheckHighForm()
- ;===============
ToWorkingIR()
;===============
+ CheckHighForm()
+ ;===============
ResolveKinds()
InferTypes()
CheckTypes()
@@ -115,7 +115,6 @@ public defmethod backend (c:StandardFIRRTL) -> List<Pass> :
to-list $ [ FIRRTL(with-output(c)) ]
public defmethod passes (c:StandardFIRRTL) -> List<Pass> :
to-list $ [
- CheckHighForm()
FIRRTL(with-output(c))
]