Files
clang-p2996/llvm/lib/Transforms/Utils/LoopUnroll.cpp
Kazu Hirata 73dc2afd2c [Transforms] Use *Set::insert_range (NFC) (#132652)
We can use *Set::insert_range to collapse:

  for (auto Elem : Range)
    Set.insert(E);

down to:

  Set.insert_range(Range);

In some cases, we can further fold that into the set declaration.
2025-03-23 19:42:53 -07:00

43 KiB