summaryrefslogtreecommitdiff
path: root/src/main/scala
diff options
context:
space:
mode:
authorAditya Naik2024-06-04 01:31:21 -0700
committerAditya Naik2024-06-04 01:31:21 -0700
commit9a9b2c10eacf10952faea0ec18e76e20d101f813 (patch)
treeab78768c9622f998d4d6208903ee91f8f000e043 /src/main/scala
parent52824ce57e9d60fe6ef721cfb073249e654dcf46 (diff)
This shold compile if not for the strange bug...
Diffstat (limited to 'src/main/scala')
-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
)