From 77e068c153fde22e753aa6132a7dc03f9063105e Mon Sep 17 00:00:00 2001 From: Howard Mao Date: Thu, 14 Jan 2016 22:42:44 -0800 Subject: [PATCH] fix Chisel3 compat issue in SimpleHellaCacheIF --- rocket/src/main/scala/nbdcache.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rocket/src/main/scala/nbdcache.scala b/rocket/src/main/scala/nbdcache.scala index 7c962fd9..4af94fa7 100644 --- a/rocket/src/main/scala/nbdcache.scala +++ b/rocket/src/main/scala/nbdcache.scala @@ -1120,8 +1120,8 @@ class SimpleHellaCacheIF(implicit p: Parameters) extends Module // stash d$ request in stage 1 if nacked (newer request) replayq2.io.enq.valid := s2_req_fire && s3_nack - replayq2.io.enq.bits.data := io.cache.resp.bits.store_data replayq2.io.enq.bits <> io.cache.resp.bits + replayq2.io.enq.bits.data := io.cache.resp.bits.store_data replayq2.io.deq.ready := Bool(false) when (s2_nack) {