summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/main/scala/chisel3/util/pla.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/scala/chisel3/util/pla.scala b/src/main/scala/chisel3/util/pla.scala
index d4707d26..0a7067f5 100644
--- a/src/main/scala/chisel3/util/pla.scala
+++ b/src/main/scala/chisel3/util/pla.scala
@@ -95,7 +95,7 @@ object pla {
}
}
.flatten
- if (andMatrixInput.nonEmpty) t.toString -> Cat(andMatrixInput).andR() else t.toString -> true.B
+ if (andMatrixInput.nonEmpty) t.toString -> Cat(andMatrixInput).andR else t.toString -> true.B
}.toMap
// the OR matrix
@@ -111,7 +111,7 @@ object pla {
andMatrixOutputs(inputTerm.toString)
}
if (andMatrixLines.isEmpty) false.B
- else Cat(andMatrixLines).orR()
+ else Cat(andMatrixLines).orR
}
.reverse
)