Files
clang-p2996/llvm/lib/CodeGen/FixupStatepointCallerSaved.cpp
Kazu Hirata 673f4705a8 [llvm] Use *Set::insert_range (NFC) (#133353)
We can use *Set::insert_range to collapse:

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

down to:

  Set.insert_range(llvm::make_first_range(Range));

In some cases, we can further fold that into the set declaration.
2025-03-27 20:44:20 -07:00

23 KiB