llvm-project
1cc07a08 - [mlir] Use *Set::insert_range (NFC) (#133043)

Commit
266 days ago
[mlir] Use *Set::insert_range (NFC) (#133043) 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.
Parents
Loading