aboutsummaryrefslogtreecommitdiff
path: root/test/passes/lower-to-ground/register.fir
diff options
context:
space:
mode:
Diffstat (limited to 'test/passes/lower-to-ground/register.fir')
-rw-r--r--test/passes/lower-to-ground/register.fir12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/passes/lower-to-ground/register.fir b/test/passes/lower-to-ground/register.fir
index f270bacb..219996fb 100644
--- a/test/passes/lower-to-ground/register.fir
+++ b/test/passes/lower-to-ground/register.fir
@@ -11,11 +11,11 @@
wire q : { x : UInt, flip y : SInt }
r1.init := q
- ; CHECK: reg r1#x : UInt
- ; CHECK: reg r1#y : SInt
- ; CHECK: wire q#x : UInt
- ; CHECK: wire q#y : SInt
- ; CHECK: r1#x.init := q#x
- ; CHECK: q#y := r1#y.init
+ ; CHECK: reg r1$x : UInt
+ ; CHECK: reg r1$y : SInt
+ ; CHECK: wire q$x : UInt
+ ; CHECK: wire q$y : SInt
+ ; CHECK: r1$x.init := q$x
+ ; CHECK: q$y := r1$y.init
; CHECK: Finished Lower To Ground