aboutsummaryrefslogtreecommitdiff
path: root/test/passes/expand-connect-indexed/bundle-vecs.fir
diff options
context:
space:
mode:
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