aboutsummaryrefslogtreecommitdiff
path: root/test/passes/expand-whens/partial-init.fir
diff options
context:
space:
mode:
authorazidar2015-04-23 15:27:43 -0700
committerazidar2015-04-23 15:27:43 -0700
commit3862865b8c70dd21e1a436dd79cfd165bebe5f43 (patch)
treeb8b3521d588d88218b4bf8b0d53534c6a4deca8e /test/passes/expand-whens/partial-init.fir
parentaccb511cb37ce595d28bb3feefe5be79bc6ae303 (diff)
Added new parser. Fixed all Tests. Added on-reset to parser, but don't correctly handle it in compiler.
Diffstat (limited to 'test/passes/expand-whens/partial-init.fir')
-rw-r--r--test/passes/expand-whens/partial-init.fir4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/passes/expand-whens/partial-init.fir b/test/passes/expand-whens/partial-init.fir
index 653dfb2d..e5788c11 100644
--- a/test/passes/expand-whens/partial-init.fir
+++ b/test/passes/expand-whens/partial-init.fir
@@ -3,7 +3,7 @@
; CHECK: Expand Whens
circuit top :
module top :
- reg r : UInt(1)[10]
- r.init.3 := UInt(0)
+ reg r : UInt<1>[10]
+ on-reset r[3] := UInt(0)
; CHECK: Finished Expand Whens