aboutsummaryrefslogtreecommitdiff
path: root/test/passes/expand-connect-indexed/bundle-vecs.fir
diff options
context:
space:
mode:
authorazidar2015-05-15 16:34:34 -0700
committerazidar2015-05-15 16:34:34 -0700
commit2702e571040e7a07317b79f9c5cfdbd61b9ab2bf (patch)
tree0e5973d175be18851865b712e16871764157889f /test/passes/expand-connect-indexed/bundle-vecs.fir
parent521a4277bfc1d764dc9ee771c604200525e871cb (diff)
Updated firrtl for its passes to be a bit more modular, and to enable plugging in other backends. Also updated a lot of tests, but not all of them because its annoying.
Diffstat (limited to 'test/passes/expand-connect-indexed/bundle-vecs.fir')
-rw-r--r--test/passes/expand-connect-indexed/bundle-vecs.fir9
1 files changed, 5 insertions, 4 deletions
diff --git a/test/passes/expand-connect-indexed/bundle-vecs.fir b/test/passes/expand-connect-indexed/bundle-vecs.fir
index c8235ade..cb63cacf 100644
--- a/test/passes/expand-connect-indexed/bundle-vecs.fir
+++ b/test/passes/expand-connect-indexed/bundle-vecs.fir
@@ -1,8 +1,8 @@
-; RUN: firrtl -i %s -o %s.flo -x abcdefghi -p c | tee %s.out | FileCheck %s
+; RUN: firrtl -i %s -o %s.flo -X flo -p c | tee %s.out | FileCheck %s
; CHECK: Expand Indexed Connects
circuit top :
- module q :
+ module top :
wire i : UInt
wire j : UInt
@@ -19,11 +19,12 @@ circuit top :
; CHECK: node b$x#0 = i
; CHECK: when eq-uu(b$x#0, UInt(1)) :
; CHECK: b$x := a$1$x
- ; CHECK: a$0$y := b$y
; CHECK: node b$y#0 = i
+ ; CHECK: when eq-uu(b$y#0, UInt(0)) :
+ ; CHECK: a$0$y := b$y
; CHECK: when eq-uu(b$y#0, UInt(1)) :
; CHECK: a$1$y := b$y
- j := b
+ j := b.x
; CHECK: Finished Expand Indexed Connects