aboutsummaryrefslogtreecommitdiff
path: root/test/features/VerilogRename.fir
blob: f8fceaa91159f5c0b7b816616fcfdb6fde3c78ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
; RUN: firrtl -i %s -o %s.v -X verilog -p c 2>&1 | tee %s.out | FileCheck %s
circuit Top :
   module Top :
      input with : Clock
      output unsigned : Clock
      wire trireg : Clock
      unsigned <= with
      trireg <= with

;CHECK: Verilog Rename

;CHECK: input with$ : Clock
;CHECK: output unsigned$ : Clock
;CHECK: wire trireg$ : Clock
;CHECK: trireg$ <= with$
;CHECK: unsigned$ <= with$   

;CHECK: Done!