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.fir20
1 files changed, 10 insertions, 10 deletions
diff --git a/test/passes/lower-to-ground/accessor.fir b/test/passes/lower-to-ground/accessor.fir
index 0ebbb13d..2b73a8e9 100644
--- a/test/passes/lower-to-ground/accessor.fir
+++ b/test/passes/lower-to-ground/accessor.fir
@@ -3,26 +3,26 @@
; CHECK: Lower To Ground
circuit top :
module m :
- wire i : UInt(2)
- wire j : UInt(32)
+ wire i : UInt<2>
+ 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)
+ 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>
accessor b = a[i]
- ; CHECK: wire b : UInt(32)
+ ; CHECK: wire b : UInt<32>
; CHECK: b := (a$0 a$1 a$2 a$3)[i]
j := b
accessor c = a[i]
- ; CHECK: wire c : UInt(32)
+ ; CHECK: wire c : UInt<32>
; CHECK: (a$0 a$1 a$2 a$3)[i] := c
c := j
- mem p : UInt(32)[4]
+ mem p : UInt<32>[4]
accessor t = p[i]
; CHECK: accessor t = p[i]
j := t