aboutsummaryrefslogtreecommitdiff
path: root/test/passes/lower-to-ground/bundle-vecs.fir
diff options
context:
space:
mode:
Diffstat (limited to 'test/passes/lower-to-ground/bundle-vecs.fir')
-rw-r--r--test/passes/lower-to-ground/bundle-vecs.fir24
1 files changed, 12 insertions, 12 deletions
diff --git a/test/passes/lower-to-ground/bundle-vecs.fir b/test/passes/lower-to-ground/bundle-vecs.fir
index a4ead6ed..f1b25854 100644
--- a/test/passes/lower-to-ground/bundle-vecs.fir
+++ b/test/passes/lower-to-ground/bundle-vecs.fir
@@ -7,23 +7,23 @@ circuit top :
wire j : UInt
wire a : { x : UInt(32), flip y : UInt(32) }[2]
- ; CHECK: wire a#0#x : UInt(32)
- ; CHECK: wire a#0#y : UInt(32)
- ; CHECK: wire a#1#x : UInt(32)
- ; CHECK: wire a#1#y : UInt(32)
+ ; CHECK: wire a$0$x : UInt(32)
+ ; CHECK: wire a$0$y : UInt(32)
+ ; CHECK: wire a$1$x : UInt(32)
+ ; CHECK: wire a$1$y : UInt(32)
accessor b = a[i]
- ; CHECK: wire b#x : UInt(32)
- ; CHECK: wire b#y : UInt(32)
- ; CHECK: b#x := (a#0#x a#1#x)[i]
- ; CHECK: (a#0#y a#1#y)[i] := b#y
+ ; CHECK: wire b$x : UInt(32)
+ ; CHECK: wire b$y : UInt(32)
+ ; CHECK: b$x := (a$0$x a$1$x)[i]
+ ; CHECK: (a$0$y a$1$y)[i] := b$y
j := b
accessor c = a[i]
- ; CHECK: wire c#x : UInt(32)
- ; CHECK: wire c#y : UInt(32)
- ; CHECK: (a#0#x a#1#x)[i] := c#x
- ; CHECK: c#y := (a#0#y a#1#y)[i]
+ ; CHECK: wire c$x : UInt(32)
+ ; CHECK: wire c$y : UInt(32)
+ ; CHECK: (a$0$x a$1$x)[i] := c$x
+ ; CHECK: c$y := (a$0$y a$1$y)[i]
c := j