Skip to content

Commit

Permalink
fix(VMergeBuffer): uopFinish should not be set when redirect (#3928)
Browse files Browse the repository at this point in the history
  • Loading branch information
Anzooooo authored Nov 26, 2024
1 parent c2b41b9 commit 3a6a7d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/scala/xiangshan/mem/vector/VMergeBuffer.scala
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ abstract class BaseVMergeBuffer(isVStore: Boolean=false)(implicit p: Parameters)

//uopwriteback(deq)
for (i <- 0 until uopSize){
when(allocated(i) && entries(i).allReady()){
when(allocated(i) && entries(i).allReady() && !needCancel(i)){
uopFinish(i) := true.B
}
}
Expand Down

0 comments on commit 3a6a7d4

Please sign in to comment.