aboutsummaryrefslogtreecommitdiff
path: root/test/features/BulkConnect.fir
diff options
context:
space:
mode:
Diffstat (limited to 'test/features/BulkConnect.fir')
-rw-r--r--test/features/BulkConnect.fir26
1 files changed, 13 insertions, 13 deletions
diff --git a/test/features/BulkConnect.fir b/test/features/BulkConnect.fir
index eab0e602..f78ba45b 100644
--- a/test/features/BulkConnect.fir
+++ b/test/features/BulkConnect.fir
@@ -5,24 +5,24 @@ circuit Top :
wire a : { w : UInt<42>, x : UInt<10>, flip y : UInt<42>, z : SInt<42>}
wire b : { w : UInt<42>, x : UInt<20>, y : UInt<42>, z : UInt<42>}
a <> b
- ; CHECK: a_w := b_w
- ; CHECK: a_x := b_x
- ; CHECK-NOT: a_y := b_y
- ; CHECK-NOT: b_y := a_y
- ; CHECK-NOT: a_z := b_z
+ ; CHECK: a$w := b$w
+ ; CHECK: a$x := b$x
+ ; CHECK-NOT: a$y := b$y
+ ; CHECK-NOT: b$y := a$y
+ ; CHECK-NOT: a$z := b$z
wire c : { x : { y : UInt<1>, z : UInt<1>}}[4]
wire d : { x : { y : UInt<1>}}[2]
c <> d
- ; CHECK: c_0_x_y := d_0_x_y
- ; CHECK: c_1_x_y := d_1_x_y
- ; CHECK-NOT: c_2_x_y := d_2_x_y
- ; CHECK-NOT: c_3_x_y := d_3_x_y
- ; CHECK-NOT: c_0_x_z := d_0_x_z
- ; CHECK-NOT: c_1_x_z := d_1_x_z
- ; CHECK-NOT: c_2_x_z := d_2_x_z
- ; CHECK-NOT: c_3_x_z := d_3_x_z
+ ; CHECK: c$0$x$y := d$0$x$y
+ ; CHECK: c$1$x$y := d$1$x$y
+ ; CHECK-NOT: c$2$x$y := d$2$x$y
+ ; CHECK-NOT: c$3$x$y := d$3$x$y
+ ; CHECK-NOT: c$0$x$z := d$0$x$z
+ ; CHECK-NOT: c$1$x$z := d$1$x$z
+ ; CHECK-NOT: c$2$x$z := d$2$x$z
+ ; CHECK-NOT: c$3$x$z := d$3$x$z
;CHECK: Finished Lower To Ground
;CHECK: Done!