diff --git a/lib/frontend/src/ssa.rs b/lib/frontend/src/ssa.rs index 8ba9bfdb9a..12e77170d0 100644 --- a/lib/frontend/src/ssa.rs +++ b/lib/frontend/src/ssa.rs @@ -441,6 +441,9 @@ where debug_assert!(!data.sealed); debug_assert!(data.undef_variables.is_empty()); data.sealed = true; + // We could call data.predecessors.shrink_to_fit() here, if + // important, because no further predecessors will be added + // to this block. } } }