g++.dg/tree-ssa/loop-split-1.C has: ``` std::vector<float> a, b, c; a.reserve(s); b.reserve(s); c.reserve(s); [...] ``` I think it should be s/reserve/resize/? It still splits the loop with that change.