aboutsummaryrefslogtreecommitdiff
path: root/test/passes/lower-to-ground/accessor.fir
diff options
context:
space:
mode:
Diffstat (limited to 'test/passes/lower-to-ground/accessor.fir')
-rw-r--r--test/passes/lower-to-ground/accessor.fir12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/passes/lower-to-ground/accessor.fir b/test/passes/lower-to-ground/accessor.fir
index 29663234..14b55c63 100644
--- a/test/passes/lower-to-ground/accessor.fir
+++ b/test/passes/lower-to-ground/accessor.fir
@@ -7,19 +7,19 @@ circuit top :
wire j : UInt<32>
wire a : UInt<32>[4]
- ; CHECK: wire a$0 : UInt<32>
- ; CHECK: wire a$1 : UInt<32>
- ; CHECK: wire a$2 : UInt<32>
- ; CHECK: wire a$3 : UInt<32>
+ ; CHECK: wire a_0 : UInt<32>
+ ; CHECK: wire a_1 : UInt<32>
+ ; CHECK: wire a_2 : UInt<32>
+ ; CHECK: wire a_3 : UInt<32>
accessor b = a[i]
; CHECK: wire b : UInt<32>
- ; CHECK: b := (a$0 a$1 a$2 a$3)[i]
+ ; CHECK: b := (a_0 a_1 a_2 a_3)[i]
j := b
accessor c = a[i]
; CHECK: wire c : UInt<32>
- ; CHECK: (a$0 a$1 a$2 a$3)[i] := c
+ ; CHECK: (a_0 a_1 a_2 a_3)[i] := c
c := j
mem p : UInt<32>[4]