aboutsummaryrefslogtreecommitdiff
path: root/test/features/Printf.fir
diff options
context:
space:
mode:
Diffstat (limited to 'test/features/Printf.fir')
-rw-r--r--test/features/Printf.fir21
1 files changed, 0 insertions, 21 deletions
diff --git a/test/features/Printf.fir b/test/features/Printf.fir
deleted file mode 100644
index 912023af..00000000
--- a/test/features/Printf.fir
+++ /dev/null
@@ -1,21 +0,0 @@
-; RUN: firrtl -i %s -o %s.v -X verilog -p c 2>&1 | tee %s.out | FileCheck %s
-
-;CHECK: Expand Whens
-circuit Top :
- module Top :
- input x : {y : UInt<1>}
- input p : UInt<1>
- input clk : Clock
- input en : UInt<1>
- printf(clk,en,"Hello World!\n")
- printf(clk,en,"Hello World! %x\n", x.y)
- when p :
- printf(clk,en,"In consequence\n")
- else :
- printf(clk,en,"In alternate\n")
-
-;CHECK: printf(clk, en, "Hello World!\n")
-;CHECK: printf(clk, en, "Hello World! %x\n", x.y)
-;CHECK: printf(clk, and(p, en), "In consequence\n")
-;CHECK: printf(clk, and(eq(p, UInt<1>("h0")), en), "In alternate\n")
-;CHECK: Done!