From 5b356b735caf5e910df7ab752939ea4baccd463c Mon Sep 17 00:00:00 2001 From: Hansung Kim Date: Sun, 15 Oct 2023 23:24:32 -0700 Subject: [PATCH] Fix unused warning in Coalescing --- src/main/scala/tilelink/Coalescing.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/scala/tilelink/Coalescing.scala b/src/main/scala/tilelink/Coalescing.scala index 06f6abf..6ee71e9 100644 --- a/src/main/scala/tilelink/Coalescing.scala +++ b/src/main/scala/tilelink/Coalescing.scala @@ -2230,7 +2230,7 @@ class CoalescerXbarImpl(outer: CoalescerXbar, // For the uncoalesced data response (outer.nonCoalNarrowNodes zip io.nonCoalResps).foreach{ case(node,resp) => - val (tlOut, edgeOut) = node.out(0) + val (tlOut, _) = node.out(0) val nonCoalResp = Wire(respNonCoalEntryT) nonCoalResp.fromTLD(tlOut.d.bits) tlOut.d.ready := resp.ready @@ -2246,7 +2246,7 @@ class CoalescerXbarImpl(outer: CoalescerXbar, ) outer.coalReqNodes.zipWithIndex.foreach{ case(node, idx) => - val (tlOut, edgeOut) = node.out(0) + val (tlOut, _) = node.out(0) coalRespRRArbiter.io.in(idx) <> tlOut.d } //Connect output of arbiter to coalesced reponse output