aboutsummaryrefslogtreecommitdiff
path: root/test/features/CondRead.fir
diff options
context:
space:
mode:
authorazidar2015-12-10 19:32:43 -0800
committerazidar2016-01-16 14:28:17 -0800
commit5dfed8b731764834e4d16197d4f8c31f16daff75 (patch)
treead407f410e590700e4bf38312cf2acbd0d59f9ed /test/features/CondRead.fir
parent0246ab2479724fb0118bb7a25577c71e2a038223 (diff)
Finished supporting nested accesses. Required some nuianced thinking. Pass all feature tests. Deleted CondRead because it tested a problem we don't have any more
Diffstat (limited to 'test/features/CondRead.fir')
-rw-r--r--test/features/CondRead.fir20
1 files changed, 0 insertions, 20 deletions
diff --git a/test/features/CondRead.fir b/test/features/CondRead.fir
deleted file mode 100644
index 5dd1d321..00000000
--- a/test/features/CondRead.fir
+++ /dev/null
@@ -1,20 +0,0 @@
-; RUN: firrtl -i %s -o %s.v -X verilog -p c 2>&1 | tee %s.out | FileCheck %s
-; XFAIL: *
-circuit CondRead :
- module CondRead :
- input pred : UInt<1>
- input index : UInt<6>
- input clk : Clock
- output out : UInt<20>
-
- smem mem : UInt<20>[128],clk
-
- poison xxx : UInt<6>
- wire data : UInt<20>
- read accessor readport = mem[mux(pred,index,xxx)]
- out <= readport
-
-
-; CHECK: read accessor readport = mem[mux(pred,index,index_0)]
-; CHECK: Done!
-