aboutsummaryrefslogtreecommitdiff
path: root/test/passes/make-explicit-reset/mix-reset.fir
diff options
context:
space:
mode:
Diffstat (limited to 'test/passes/make-explicit-reset/mix-reset.fir')
-rw-r--r--test/passes/make-explicit-reset/mix-reset.fir29
1 files changed, 0 insertions, 29 deletions
diff --git a/test/passes/make-explicit-reset/mix-reset.fir b/test/passes/make-explicit-reset/mix-reset.fir
deleted file mode 100644
index 97d32397..00000000
--- a/test/passes/make-explicit-reset/mix-reset.fir
+++ /dev/null
@@ -1,29 +0,0 @@
-; RUN: firrtl -i %s -o %s.flo -X flo -p cd | tee %s.out | FileCheck %s
-
-; CHECK: Make Explicit Reset
-circuit top :
- module A :
- ;CHECK: input reset : UInt<1>
- input x : UInt<16>
- output y : UInt<16>
- inst b of B
- ;CHECK: b.reset := reset
- module B :
- input reset : UInt<1>
- ;CHECK: input reset : UInt<1>
- input x : UInt<16>
- output y : UInt<16>
- inst c of C
- ;CHECK: c.reset := reset
- module C :
- ;CHECK: input reset : UInt<1>
- input a : UInt<16>
- input b : UInt<16>
- module top :
- ;CHECK: input reset : UInt<1>
- input a : UInt<16>
- input b : UInt<16>
- output z : UInt<1>
- inst x of A
- ;CHECK: x.reset := reset
-;CHECK: Finished Make Explicit Reset