aboutsummaryrefslogtreecommitdiff
path: root/test/features
diff options
context:
space:
mode:
authorazidar2015-08-03 18:39:55 -0700
committerazidar2015-08-03 18:39:55 -0700
commitff6dfecf42560ed2e2eb678adc9ca8d868a472bd (patch)
tree1483818b3efa226bce74cca560f1aa38102ebcfa /test/features
parentec3bf6a6a74061721024dece229f7a6062f5c7fc (diff)
Changed name mangling to use _ as a delin. Fixed bug in checking for
invalid <> assignments.
Diffstat (limited to 'test/features')
-rw-r--r--test/features/EmptyStmt.fir11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/features/EmptyStmt.fir b/test/features/EmptyStmt.fir
new file mode 100644
index 00000000..c3bd894a
--- /dev/null
+++ b/test/features/EmptyStmt.fir
@@ -0,0 +1,11 @@
+; RUN: firrtl -i %s -o %s.flo -X flo -p c 2>&1 | tee %s.out | FileCheck %s
+;CHECK: Done!
+circuit Top :
+ module Top :
+ skip
+ when UInt(1) :
+ skip
+ else :
+ skip
+ skip
+