summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJiuyang Liu2021-10-12 01:30:25 +0800
committerJiuyang Liu2021-11-14 04:24:37 +0800
commitd77fcf0478047fb61521fbe4b4a5a59a64b8445d (patch)
treeed98d90d2d39bee6f1361ea9c9781c342e354b2c
parent921a5859cb5f450851025e5dcbd10d68629ea5c9 (diff)
remove_toBools
-rw-r--r--core/src/main/scala/chisel3/Bits.scala6
1 files changed, 0 insertions, 6 deletions
diff --git a/core/src/main/scala/chisel3/Bits.scala b/core/src/main/scala/chisel3/Bits.scala
index 81b43483..58ec2585 100644
--- a/core/src/main/scala/chisel3/Bits.scala
+++ b/core/src/main/scala/chisel3/Bits.scala
@@ -310,12 +310,6 @@ sealed abstract class Bits(private[chisel3] val width: Width) extends Element wi
def do_>> (that: UInt)(implicit sourceInfo: SourceInfo, compileOptions: CompileOptions): Bits
/** Returns the contents of this wire as a [[scala.collection.Seq]] of [[Bool]]. */
- final def toBools: Seq[Bool] = macro SourceInfoTransform.noArg
-
- @deprecated("Calling this function with an empty argument list is invalid in Scala 3. Use the form without parentheses instead", "Chisel 3.5")
- final def toBools(dummy: Int*): Seq[Bool] = macro SourceInfoWhiteboxTransform.noArgDummy
-
- /** Returns the contents of this wire as a [[scala.collection.Seq]] of [[Bool]]. */
final def asBools: Seq[Bool] = macro SourceInfoTransform.noArg
@deprecated("Calling this function with an empty argument list is invalid in Scala 3. Use the form without parentheses instead", "Chisel 3.5")