aboutsummaryrefslogtreecommitdiff
path: root/test/passes/lower-to-ground/instance.fir
diff options
context:
space:
mode:
Diffstat (limited to 'test/passes/lower-to-ground/instance.fir')
-rw-r--r--test/passes/lower-to-ground/instance.fir41
1 files changed, 0 insertions, 41 deletions
diff --git a/test/passes/lower-to-ground/instance.fir b/test/passes/lower-to-ground/instance.fir
deleted file mode 100644
index e0175f34..00000000
--- a/test/passes/lower-to-ground/instance.fir
+++ /dev/null
@@ -1,41 +0,0 @@
-; RUN: firrtl -i %s -o %s.v -X verilog -p cdg 2>&1 | tee %s.out | FileCheck %s
-
-circuit top :
- module source :
- output data : UInt<16>
- input ready : UInt<1>
- data <= UInt(16)
- module sink :
- input data : UInt<16>
- output ready : UInt<1>
- ready <= UInt(1)
- module top:
- wire connect : { data : UInt<16>, flip ready: UInt<1> }
- connect.ready <= UInt(1)
- connect.data <= UInt(1)
- wire connect2 : { flip data : UInt<16>, ready: UInt<1> }
- connect2.ready <= UInt(1)
- connect2.data <= UInt(1)
- inst src of source
- inst snk of sink
- connect <= src
- connect2 <= snk
-
-
-; CHECK: Resolve Genders
-
-; CHECK: connect@<g:f> <= src@<g:m>
-; CHECK: connect2@<g:f> <= snk@<g:m>
-
-; CHECK: Finished Resolve Genders
-
-
-; CHECK: Lower Types
-
-; CHECK: connect{{[_$]+}}data@<g:f> <= src@<g:m>.data@<g:m>
-; CHECK: connect2{{[_$]+}}ready@<g:f> <= snk@<g:m>.ready@<g:m>
-; CHECK: src@<g:m>.ready@<g:f> <= connect{{[_$]+}}ready@<g:m>
-; CHECK: snk@<g:m>.data@<g:f> <= connect2{{[_$]+}}data@<g:m>
-
-; CHECK: Finished Lower Types
-; CHECK: Done!