diff options
| author | Andrew Waterman | 2016-07-31 17:05:21 -0700 |
|---|---|---|
| committer | Andrew Waterman | 2016-07-31 17:25:49 -0700 |
| commit | 8b66107bffac270be16196d5a852cf3e6808fb0a (patch) | |
| tree | ef5f97945eb501cd483317d87607244461847f08 /src/main | |
| parent | 54cd58cbb435170dd2ed67dafe1cb1d769a799e8 (diff) | |
Fix two deprecation warnings
Diffstat (limited to 'src/main')
| -rw-r--r-- | src/main/scala/chisel3/util/OneHot.scala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/scala/chisel3/util/OneHot.scala b/src/main/scala/chisel3/util/OneHot.scala index abede61e..7e04a8d7 100644 --- a/src/main/scala/chisel3/util/OneHot.scala +++ b/src/main/scala/chisel3/util/OneHot.scala @@ -11,7 +11,7 @@ import chisel3._ * This is the inverse of [[Chisel.UIntToOH UIntToOH]]*/ object OHToUInt { def apply(in: Seq[Bool]): UInt = apply(Cat(in.reverse), in.size) - def apply(in: Vec[Bool]): UInt = apply(in.toBits, in.size) + def apply(in: Vec[Bool]): UInt = apply(in.asUInt, in.size) def apply(in: Bits): UInt = apply(in, in.getWidth) def apply(in: Bits, width: Int): UInt = { |
