aboutsummaryrefslogtreecommitdiff
path: root/test/errors/high-form
diff options
context:
space:
mode:
authorazidar2015-08-04 12:32:45 -0700
committerazidar2015-08-04 12:32:45 -0700
commit45a54fadf735742b819590f3209224636e56c715 (patch)
tree025d0b33f7e1455d25adbffc2ec7c419e1a2053a /test/errors/high-form
parentff6dfecf42560ed2e2eb678adc9ca8d868a472bd (diff)
Fixed reading from instance's input ports. Fixed unique naming bug.
Diffstat (limited to 'test/errors/high-form')
-rw-r--r--test/errors/high-form/RemoveChar.fir12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/errors/high-form/RemoveChar.fir b/test/errors/high-form/RemoveChar.fir
new file mode 100644
index 00000000..c9c2286e
--- /dev/null
+++ b/test/errors/high-form/RemoveChar.fir
@@ -0,0 +1,12 @@
+; RUN: firrtl -i %s -o %s.flo -X flo -p c 2>&1 | tee %s.out | FileCheck %s
+; CHECK: Done!
+
+circuit Top :
+ module Top :
+ wire x_1 : UInt<1>
+ x_1 := UInt(1)
+ wire x : UInt<1>
+ x := addw(addw(UInt(1),UInt(1)),UInt(1))
+
+
+