diff options
| author | Richard Lin | 2017-04-21 21:40:52 -0700 |
|---|---|---|
| committer | GitHub | 2017-04-21 21:40:52 -0700 |
| commit | d439ac0144826bb170c43ae71df9782cdd0d5749 (patch) | |
| tree | e20605fb29dff184e019c4f1ec68558bf596adba /chiselFrontend/src/main | |
| parent | bb12fe7f61d12f51cf5d56b2a66aca0a1234abb3 (diff) | |
Remove VecLike/IndexedSeq from Mem type (#589)
Diffstat (limited to 'chiselFrontend/src/main')
| -rw-r--r-- | chiselFrontend/src/main/scala/chisel3/core/Mem.scala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chiselFrontend/src/main/scala/chisel3/core/Mem.scala b/chiselFrontend/src/main/scala/chisel3/core/Mem.scala index 006670e7..f935e4ee 100644 --- a/chiselFrontend/src/main/scala/chisel3/core/Mem.scala +++ b/chiselFrontend/src/main/scala/chisel3/core/Mem.scala @@ -32,7 +32,7 @@ object Mem { } } -sealed abstract class MemBase[T <: Data](t: T, val length: Int) extends HasId with VecLike[T] { +sealed abstract class MemBase[T <: Data](t: T, val length: Int) extends HasId { // REVIEW TODO: make accessors (static/dynamic, read/write) combinations consistent. /** Creates a read accessor into the memory with static addressing. See the |
