From 9a9b2c10eacf10952faea0ec18e76e20d101f813 Mon Sep 17 00:00:00 2001 From: Aditya Naik Date: Tue, 4 Jun 2024 01:31:21 -0700 Subject: This shold compile if not for the strange bug... --- src/main/scala/chisel3/util/pla.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/main') 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 ) -- cgit v1.2.3