aboutsummaryrefslogtreecommitdiff
path: root/test/passes/split-exp/split-and.fir
blob: 8eb4bdab3667979bd3e5e90cc181e5c9eb5b85e8 (plain)
1
2
3
4
5
6
7
8
; RUN: firrtl -i %s -o %s.v -X verilog -p cT 2>&1 | tee %s.out | FileCheck %s

; CHECK: Done!
circuit Top :
   module Top :
      input a : SInt<2>
      output c : UInt<2>
      c <= and(a,asSInt(UInt(2)))