Skip to content

Commit a887417

Browse files
committed
Remove debug prints
1 parent b7493a0 commit a887417

File tree

2 files changed

+0
-6
lines changed

2 files changed

+0
-6
lines changed

ci.sh

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@ function run_tests {
2424
echo "Testing host architecture"
2525
fi
2626

27-
env
28-
2927
## ui test suite
3028
./miri test
3129
if [ -z "${MIRI_TEST_TARGET+exists}" ]; then

src/stacked_borrows/mod.rs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -504,13 +504,9 @@ impl Stacks {
504504
pub fn remove_unreachable_tags(&mut self, live_tags: &FxHashSet<SbTag>) {
505505
if self.modified_since_last_gc {
506506
for stack in self.stacks.iter_mut_all() {
507-
let prev_len = stack.len();
508507
if stack.len() > 64 {
509508
stack.retain(live_tags);
510509
}
511-
if prev_len != stack.len() {
512-
println!("Removed {} tags", prev_len - stack.len());
513-
}
514510
}
515511
self.modified_since_last_gc = false;
516512
}

0 commit comments

Comments
 (0)