We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7493a0 commit a887417Copy full SHA for a887417
ci.sh
@@ -24,8 +24,6 @@ function run_tests {
24
echo "Testing host architecture"
25
fi
26
27
- env
28
-
29
## ui test suite
30
./miri test
31
if [ -z "${MIRI_TEST_TARGET+exists}" ]; then
src/stacked_borrows/mod.rs
@@ -504,13 +504,9 @@ impl Stacks {
504
pub fn remove_unreachable_tags(&mut self, live_tags: &FxHashSet<SbTag>) {
505
if self.modified_since_last_gc {
506
for stack in self.stacks.iter_mut_all() {
507
- let prev_len = stack.len();
508
if stack.len() > 64 {
509
stack.retain(live_tags);
510
}
511
- if prev_len != stack.len() {
512
- println!("Removed {} tags", prev_len - stack.len());
513
- }
514
515
self.modified_since_last_gc = false;
516
0 commit comments