Skip to content

Commit

Permalink
fix(IFU): incorrect parenthesis in f2_icache_all_resp_wire
Browse files Browse the repository at this point in the history
  • Loading branch information
ngc7331 committed Nov 22, 2024
1 parent bf89a55 commit 8c6221d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/scala/xiangshan/frontend/IFU.scala
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ class NewIFU(implicit p: Parameters) extends XSModule
val f2_icache_all_resp_wire =
fromICache.valid &&
fromICache.bits.vaddr(0) === f2_ftq_req.startAddr &&
fromICache.bits.doubleline && (fromICache.bits.vaddr(1) === f2_ftq_req.nextlineStart || !f2_doubleLine)
(fromICache.bits.doubleline && fromICache.bits.vaddr(1) === f2_ftq_req.nextlineStart || !f2_doubleLine)
val f2_icache_all_resp_reg = RegInit(false.B)

icacheRespAllValid := f2_icache_all_resp_reg || f2_icache_all_resp_wire
Expand Down

0 comments on commit 8c6221d

Please sign in to comment.