aboutsummaryrefslogtreecommitdiff
path: root/test/passes/infer-widths/simple.fir
diff options
context:
space:
mode:
Diffstat (limited to 'test/passes/infer-widths/simple.fir')
-rw-r--r--test/passes/infer-widths/simple.fir4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/passes/infer-widths/simple.fir b/test/passes/infer-widths/simple.fir
index 6a50ae77..1b588c0e 100644
--- a/test/passes/infer-widths/simple.fir
+++ b/test/passes/infer-widths/simple.fir
@@ -3,9 +3,11 @@
;CHECK: Infer Widths
circuit top :
module top :
+ input clk : Clock
+ input reset : UInt<1>
wire e : UInt<30>
e := UInt(1)
- reg y : UInt
+ reg y : UInt,clk,reset
y := e
wire a : UInt<20>