llvm-project
fac8fe9c
- [Target] Use *Set::insert_range (NFC) (#132879)
Go
Login via GitHub
Home
Pricing
FAQ
Install
Login
via GitHub
Commit
View On
GitHub
Commit
228 days ago
[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.
References
#132879 - [Target] Use *Set::insert_range (NFC)
Author
kazutakahirata
Parents
75210df5
Loading