Files
clang-p2996/clang/lib/Basic/TargetID.cpp
Kazu Hirata cb80b26e37 [clang] Use *Set::insert_range (NFC) (#133357)
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-27 20:14:25 -07:00

6.5 KiB