aboutsummaryrefslogtreecommitdiff
path: root/test/features/Stop.fir
diff options
context:
space:
mode:
Diffstat (limited to 'test/features/Stop.fir')
-rw-r--r--test/features/Stop.fir13
1 files changed, 7 insertions, 6 deletions
diff --git a/test/features/Stop.fir b/test/features/Stop.fir
index fc8869fa..16e25416 100644
--- a/test/features/Stop.fir
+++ b/test/features/Stop.fir
@@ -6,15 +6,16 @@ circuit Top :
module Top :
input p : UInt<1>
input q : UInt<1>
+ input clk : Clock
when p :
- stop(0)
+ stop(clk,0)
when q :
- stop(1)
- stop(3)
+ stop(clk,1)
+ stop(clk,3)
-;CHECK: when p : stop(0)
-;CHECK: when q : stop(1)
-;CHECK: stop(3)
+;CHECK: when p : stop(clk, 0)
+;CHECK: when q : stop(clk, 1)
+;CHECK: stop(clk, 3)
;CHECK: Done!