aboutsummaryrefslogtreecommitdiff
path: root/test/passes/expand-whens/scoped-reg.fir
diff options
context:
space:
mode:
Diffstat (limited to 'test/passes/expand-whens/scoped-reg.fir')
-rw-r--r--test/passes/expand-whens/scoped-reg.fir6
1 files changed, 4 insertions, 2 deletions
diff --git a/test/passes/expand-whens/scoped-reg.fir b/test/passes/expand-whens/scoped-reg.fir
index d119932f..aec64871 100644
--- a/test/passes/expand-whens/scoped-reg.fir
+++ b/test/passes/expand-whens/scoped-reg.fir
@@ -1,11 +1,13 @@
; RUN: firrtl -i %s -o %s.flo -X flo -p c | tee %s.out | FileCheck %s
circuit top :
module top :
+ input clk : Clock
+ input reset : UInt<1>
wire p : UInt
p := UInt(1)
when p :
- reg r : UInt
- on-reset r := UInt(10)
+ reg r : UInt, clk, reset
+ onreset r := UInt(10)
r := UInt(20)
; CHECK: Expand Whens