aboutsummaryrefslogtreecommitdiff
path: root/test/passes/lower-to-ground/bundle.fir
diff options
context:
space:
mode:
authorAdam Izraelevitz2016-08-15 10:32:41 -0700
committerGitHub2016-08-15 10:32:41 -0700
commitbebd04c4c68c320b2b72325e348c726dc33beae6 (patch)
tree69f6d4da577977cc7ff428b0545bb4735507aad0 /test/passes/lower-to-ground/bundle.fir
parentcca37c46fc0848f5dbf5f95ba60755ed6d60712b (diff)
Remove stanza (#231)
* Removed stanza implementation/tests. In the future we can move the stanza tests over, but for now they should be deleted. * Added back integration .fir files * Added Makefile to give Travis hooks * Added firrtl script (was ignored before)
Diffstat (limited to 'test/passes/lower-to-ground/bundle.fir')
-rw-r--r--test/passes/lower-to-ground/bundle.fir60
1 files changed, 0 insertions, 60 deletions
diff --git a/test/passes/lower-to-ground/bundle.fir b/test/passes/lower-to-ground/bundle.fir
deleted file mode 100644
index a8f8ad78..00000000
--- a/test/passes/lower-to-ground/bundle.fir
+++ /dev/null
@@ -1,60 +0,0 @@
-; RUN: firrtl -i %s -o %s.v -X verilog -p cd 2>&1 | tee %s.out | FileCheck %s
-
-circuit top :
- module m :
- input a : { x : UInt<5>, flip y: SInt<5>}
- output b : { x : UInt<5>, flip y: SInt<5>}
- a.y <= SInt(0)
- b.x <= UInt(0)
- module top :
- input c : { x : UInt<5>[5], flip y : { x : UInt<5>[3], flip y : SInt<5> } }
- wire a : { x : UInt<5>, flip y : SInt<5>}
- wire b : { x : UInt<5>, flip y : SInt<5>}
- a <= b
- inst i of m
- i.a <= a
- b <= i.b
- wire d : UInt<5>[5]
- d[0] <= UInt(0)
- d[1] <= UInt(0)
- d[2] <= UInt(0)
- d[3] <= UInt(0)
- d[4] <= UInt(0)
- c.y.x[0] <= UInt(0)
- c.y.x[1] <= UInt(0)
- c.y.x[2] <= UInt(0)
-
-;CHECK: Lower Types
-;CHECK: circuit top :
-;CHECK: module m :
-;CHECK: input a{{[_$]+}}x : UInt<5>
-;CHECK: output a{{[_$]+}}y : SInt<5>
-;CHECK: output b{{[_$]+}}x : UInt<5>
-;CHECK: input b{{[_$]+}}y : SInt<5>
-;CHECK: module top :
-;CHECK: input c{{[_$]+}}x{{[_$]+}}0 : UInt<5>
-;CHECK: input c{{[_$]+}}x{{[_$]+}}1 : UInt<5>
-;CHECK: input c{{[_$]+}}x{{[_$]+}}2 : UInt<5>
-;CHECK: input c{{[_$]+}}x{{[_$]+}}3 : UInt<5>
-;CHECK: input c{{[_$]+}}x{{[_$]+}}4 : UInt<5>
-;CHECK: output c{{[_$]+}}y{{[_$]+}}x{{[_$]+}}0 : UInt<5>
-;CHECK: output c{{[_$]+}}y{{[_$]+}}x{{[_$]+}}1 : UInt<5>
-;CHECK: output c{{[_$]+}}y{{[_$]+}}x{{[_$]+}}2 : UInt<5>
-;CHECK: input c{{[_$]+}}y{{[_$]+}}y : SInt<5>
-;CHECK: wire a{{[_$]+}}x : UInt<5>
-;CHECK: wire a{{[_$]+}}y : SInt<5>
-;CHECK: wire b{{[_$]+}}x : UInt<5>
-;CHECK: wire b{{[_$]+}}y : SInt<5>
-;CHECK: inst i of m
-;CHECK: wire d{{[_$]+}}0 : UInt<5>
-;CHECK: wire d{{[_$]+}}1 : UInt<5>
-;CHECK: wire d{{[_$]+}}2 : UInt<5>
-;CHECK: wire d{{[_$]+}}3 : UInt<5>
-;CHECK: wire d{{[_$]+}}4 : UInt<5>
-;CHECK: a{{[_$]+}}x <= b{{[_$]+}}x
-;CHECK: a{{[_$]+}}y <= i.a{{[_$]+}}y
-;CHECK: b{{[_$]+}}x <= i.b{{[_$]+}}x
-;CHECK: b{{[_$]+}}y <= a{{[_$]+}}y
-;CHECK: i.a{{[_$]+}}x <= a{{[_$]+}}x
-;CHECK: i.b{{[_$]+}}y <= b{{[_$]+}}y
-;CHECK: Finished Lower Types