aboutsummaryrefslogtreecommitdiff
path: root/src/main/scala/firrtl/transforms/ReplaceTruncatingArithmetic.scala
diff options
context:
space:
mode:
authorSchuyler Eldridge2019-02-22 17:45:26 -0500
committerSchuyler Eldridge2019-02-25 00:16:25 -0500
commit5decb4079814be1fef10a02bf5518ec4e29f37dd (patch)
tree8a827aa0830adaa4dde8fef8185987a64938ffc1 /src/main/scala/firrtl/transforms/ReplaceTruncatingArithmetic.scala
parent5608aa8f42c1d69b59bee158d14fc6cef9b19a47 (diff)
Fix almost all Scaladoc warnings
This fixes all Scaladoc warnings except for those trying to link to Java. Signed-off-by: Schuyler Eldridge <schuyler.eldridge@ibm.com>
Diffstat (limited to 'src/main/scala/firrtl/transforms/ReplaceTruncatingArithmetic.scala')
-rw-r--r--src/main/scala/firrtl/transforms/ReplaceTruncatingArithmetic.scala12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/main/scala/firrtl/transforms/ReplaceTruncatingArithmetic.scala b/src/main/scala/firrtl/transforms/ReplaceTruncatingArithmetic.scala
index 9c809c5f..1fe9a723 100644
--- a/src/main/scala/firrtl/transforms/ReplaceTruncatingArithmetic.scala
+++ b/src/main/scala/firrtl/transforms/ReplaceTruncatingArithmetic.scala
@@ -10,15 +10,15 @@ import scala.collection.mutable
object ReplaceTruncatingArithmetic {
- /** Mapping from references to the [[Expression]]s that drive them */
+ /** Mapping from references to the [[firrtl.ir.Expression Expression]]s that drive them */
type Netlist = mutable.HashMap[WrappedExpression, Expression]
private val SeqBIOne = Seq(BigInt(1))
/** Replaces truncating arithmetic in an Expression
*
- * @param netlist a '''mutable''' HashMap mapping references to [[DefNode]]s to their connected
- * [[Expression]]s. It is '''not''' mutated in this function
+ * @param netlist a '''mutable''' HashMap mapping references to [[firrtl.ir.DefNode DefNode]]s to their connected
+ * [[firrtl.ir.Expression Expression]]s. It is '''not''' mutated in this function
* @param expr the Expression being transformed
* @return Returns expr with truncating arithmetic replaced
*/
@@ -35,8 +35,9 @@ object ReplaceTruncatingArithmetic {
/** Replaces truncating arithmetic in a Statement
*
- * @param netlist a '''mutable''' HashMap mapping references to [[DefNode]]s to their connected
- * [[Expression]]s. This function '''will''' mutate it if stmt contains a [[DefNode]]
+ * @param netlist a '''mutable''' HashMap mapping references to [[firrtl.ir.DefNode DefNode]]s to their connected
+ * [[firrtl.ir.Expression Expression]]s. This function '''will''' mutate it if stmt contains a [[firrtl.ir.DefNode
+ * DefNode]]
* @param stmt the Statement being searched for nodes and transformed
* @return Returns stmt with truncating arithmetic replaced
*/
@@ -70,4 +71,3 @@ class ReplaceTruncatingArithmetic extends Transform {
state.copy(circuit = state.circuit.copy(modules = modulesx))
}
}
-