summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authormergify[bot]2021-11-21 05:03:13 +0000
committerGitHub2021-11-21 05:03:13 +0000
commitaf7f263941e796b20d65d984bdc4fa3739e2d9b6 (patch)
treee0ca1e90bc86ae67e1d55d4d574e95acd7a94210 /core
parent27b35f49bd1ec178e693a5e5ec33193a80bb1140 (diff)
parent8f796df5693b560a086b95a24c5bd090064a639e (diff)
Merge branch 'master' into update/sbt-scoverage-1.9.2
Diffstat (limited to 'core')
-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")