Files
clang-p2996/llvm/lib/Target/AMDGPU/R600MachineCFGStructurizer.cpp
Kazu Hirata fac8fe9cf9 [Target] Use *Set::insert_range (NFC) (#132879)
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-24 22:42:04 -07:00

55 KiB