summaryrefslogtreecommitdiff
path: root/chiselFrontend
diff options
context:
space:
mode:
authorAndrew Waterman2019-01-17 15:45:22 -0800
committerAndrew Waterman2019-01-17 15:46:19 -0800
commitcc21e9cd9509563bc952d37294e08812a283ca9f (patch)
treec2b80e8d84f912dc8501b2a4ef38f2dbef53bbfd /chiselFrontend
parente2154d174e0c67d712d786f44966cd15562dfffb (diff)
Make combinational-multiplier warning less vague
Diffstat (limited to 'chiselFrontend')
-rw-r--r--chiselFrontend/src/main/scala/chisel3/core/Bits.scala6
1 files changed, 3 insertions, 3 deletions
diff --git a/chiselFrontend/src/main/scala/chisel3/core/Bits.scala b/chiselFrontend/src/main/scala/chisel3/core/Bits.scala
index 335eb7e4..4ba5aed4 100644
--- a/chiselFrontend/src/main/scala/chisel3/core/Bits.scala
+++ b/chiselFrontend/src/main/scala/chisel3/core/Bits.scala
@@ -475,9 +475,9 @@ sealed abstract class Bits(private[chisel3] val width: Width) extends Element wi
* @define coll numeric-like type
* @define numType hardware type
* @define canHaveHighCost can result in significant cycle time and area costs
- * @define canGenerateA This method can generate a
- * @define singleCycleMul @note $canGenerateA single-cycle multiplier which $canHaveHighCost.
- * @define singleCycleDiv @note $canGenerateA single-cycle divider which $canHaveHighCost.
+ * @define canGenerateA This method generates a
+ * @define singleCycleMul @note $canGenerateA fully combinational multiplier which $canHaveHighCost.
+ * @define singleCycleDiv @note $canGenerateA fully combinational divider which $canHaveHighCost.
* @define maxWidth @note The width of the returned $numType is `max(width of this, width of that)`.
* @define maxWidthPlusOne @note The width of the returned $numType is `max(width of this, width of that) + 1`.
* @define sumWidth @note The width of the returned $numType is `width of this` + `width of that`.