diff options
| author | chick | 2019-12-19 09:39:52 -0800 |
|---|---|---|
| committer | chick | 2019-12-19 09:39:52 -0800 |
| commit | 2224274cc5a42caa1e74b45573b4c7c09c85d227 (patch) | |
| tree | d987bf6c203f569159d176b8753079d52a88b272 /chiselFrontend/src/main | |
| parent | ee71c54ffa48162b3d0a451e37016374bd9a7239 (diff) | |
Removed accidentally introduced parens
Diffstat (limited to 'chiselFrontend/src/main')
| -rw-r--r-- | chiselFrontend/src/main/scala/chisel3/Clock.scala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chiselFrontend/src/main/scala/chisel3/Clock.scala b/chiselFrontend/src/main/scala/chisel3/Clock.scala index 1aadf167..aad515e4 100644 --- a/chiselFrontend/src/main/scala/chisel3/Clock.scala +++ b/chiselFrontend/src/main/scala/chisel3/Clock.scala @@ -38,6 +38,6 @@ sealed class Clock(private[chisel3] val width: Width = Width(1)) extends Element override def do_asUInt(implicit sourceInfo: SourceInfo, connectCompileOptions: CompileOptions): UInt = pushOp(DefPrim(sourceInfo, UInt(this.width), AsUIntOp, ref)) // scalastyle:ignore line.size.limit private[chisel3] override def connectFromBits(that: Bits)(implicit sourceInfo: SourceInfo, compileOptions: CompileOptions): Unit = { - this := that.asBool().asClock + this := that.asBool.asClock } } |
