Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FixedIO__Modules with various kinds of probe ports #4105

Merged
merged 13 commits into from
May 30, 2024
Prev Previous commit
Next Next commit
scalafmt
  • Loading branch information
mwachs5 committed May 29, 2024
commit 5100de8ab6b582336d63e9f448188b4f55dc9ece
4 changes: 2 additions & 2 deletions core/src/main/scala/chisel3/Data.scala
Original file line number Diff line number Diff line change
Expand Up @@ -214,10 +214,10 @@ private[chisel3] object getRecursiveFields {
private[chisel3] object getMatchedFields {
def apply(x: Data, y: Data): Seq[(Data, Data)] = (x, y) match {
case (x: Element, y: Element) =>
requireTypeEquivalent(x, y)
x.requireTypeEquivalent(y)
Seq(x -> y)
case (_, _) if DataMirror.hasProbeTypeModifier(x) || DataMirror.hasProbeTypeModifier(y) => {
requireTypeEquivalent(x, y)
x.requireTypeEquivalent(y)
Seq(x -> y)
}
case (x: Record, y: Record) =>
Expand Down
Loading