We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 69fd6e7 commit 64a5ec1Copy full SHA for 64a5ec1
1 file changed
zjit/src/hir.rs
@@ -5087,7 +5087,7 @@ impl Function {
5087
}
5088
// TODO: Figure out if we need to handle a write barrier special case. Do these also need to be removed after removing stores?
5089
// Prune away any dead stores
5090
- insns.retain(|i| dead_stores.contains(i));
+ insns.retain(|i| !dead_stores.contains(i));
5091
self.blocks[block.0].insns = insns;
5092
5093
0 commit comments