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 449204a3..a3c4f0ae 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 }
on-reset r1 := q
- ; CHECK: reg r1_x : UInt
- ; CHECK: reg r1_y : SInt
- ; CHECK: wire q_x : UInt
- ; CHECK: wire q_y : SInt
- ; CHECK: on-reset r1_x := q_x
- ; CHECK: on-reset q_y := r1_y
+ ; CHECK: reg r1$x : UInt
+ ; CHECK: reg r1$y : SInt
+ ; CHECK: wire q$x : UInt
+ ; CHECK: wire q$y : SInt
+ ; CHECK: on-reset r1$x := q$x
+ ; CHECK: on-reset q$y := r1$y
; CHECK: Finished Lower To Ground