diff options
| -rw-r--r-- | chiselFrontend/src/main/scala/chisel3/core/Bits.scala | 6 | ||||
| -rw-r--r-- | src/test/scala/chiselTests/LiteralExtractorSpec.scala | 3 |
2 files changed, 7 insertions, 2 deletions
diff --git a/chiselFrontend/src/main/scala/chisel3/core/Bits.scala b/chiselFrontend/src/main/scala/chisel3/core/Bits.scala index 0550a72c..adf97dbe 100644 --- a/chiselFrontend/src/main/scala/chisel3/core/Bits.scala +++ b/chiselFrontend/src/main/scala/chisel3/core/Bits.scala @@ -95,7 +95,11 @@ sealed abstract class Bits(width: Width) // provide bits-specific literal handling functionality here override private[chisel3] def ref: Arg = topBindingOpt match { - case Some(binding: LitBinding) => binding.asInstanceOf[ElementLitBinding].litArg + case Some(ElementLitBinding(litArg)) => litArg + case Some(BundleLitBinding(litMap)) => litMap.get(this) match { + case Some(litArg) => litArg + case _ => throwException(s"internal error: DontCare should be caught before connect") + } case _ => super.ref } diff --git a/src/test/scala/chiselTests/LiteralExtractorSpec.scala b/src/test/scala/chiselTests/LiteralExtractorSpec.scala index 6960fa88..d160685c 100644 --- a/src/test/scala/chiselTests/LiteralExtractorSpec.scala +++ b/src/test/scala/chiselTests/LiteralExtractorSpec.scala @@ -76,7 +76,8 @@ class LiteralExtractorSpec extends ChiselFlatSpec { // the following errors with "assertion failed" - chisel3.core.assert(outsideLiteral === insideLiteral) + println(outsideLiteral === insideLiteral) + // chisel3.core.assert(outsideLiteral === insideLiteral) // the following lines of code error // with "chisel3.core.BundleLitBinding cannot be cast to chisel3.core.ElementLitBinding" |
