diff options
| author | Jim Lawson | 2019-12-17 12:41:36 -0800 |
|---|---|---|
| committer | mergify[bot] | 2019-12-17 20:41:36 +0000 |
| commit | 98a6710cc0447d79cbd12271ea450c70e619b6f8 (patch) | |
| tree | b9eed448e7475aaa3eb88771ae29f97cf37276ce /chiselFrontend | |
| parent | 4ef91c4c43d6ab808e79edd239062f919a5bbbe3 (diff) | |
Band aid until litOption is implemented for Aggregates. (#1277)
This is just a band aid until an Aggregate `isLit()` method (for which work has begun) is implemented.
Diffstat (limited to 'chiselFrontend')
| -rw-r--r-- | chiselFrontend/src/main/scala/chisel3/Aggregate.scala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chiselFrontend/src/main/scala/chisel3/Aggregate.scala b/chiselFrontend/src/main/scala/chisel3/Aggregate.scala index 42b40ed9..8141fdba 100644 --- a/chiselFrontend/src/main/scala/chisel3/Aggregate.scala +++ b/chiselFrontend/src/main/scala/chisel3/Aggregate.scala @@ -43,7 +43,7 @@ sealed abstract class Aggregate extends Data { } } - override def litOption: Option[BigInt] = ??? // TODO implement me + override def litOption: Option[BigInt] = None // TODO implement me /** Returns a Seq of the immediate contents of this Aggregate, in order. */ |
