Skip to content

Commit

Permalink
StoreUnit: DONT report af to exceptionBuffer when store is killed (#3432
Browse files Browse the repository at this point in the history
)
  • Loading branch information
linjuanZ authored Aug 27, 2024
1 parent 8bbc295 commit e4f52b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/scala/xiangshan/mem/pipeline/StoreUnit.scala
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,7 @@ class StoreUnit(implicit p: Parameters) extends XSModule

// mmio and exception
io.lsq_replenish := s2_out
io.lsq_replenish.af := s2_out.af && !s2_kill
io.lsq_replenish.af := s2_out.af && s2_valid && !s2_kill

// prefetch related
io.lsq_replenish.miss := io.dcache.resp.fire && io.dcache.resp.bits.miss // miss info
Expand Down

0 comments on commit e4f52b4

Please sign in to comment.